Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / ctf / core / CTFStrings.java
CommitLineData
c26d0fe0 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
c26d0fe0
AM
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
f357bcd4 13package org.eclipse.tracecompass.ctf.core;
c26d0fe0 14
a4fa4e36
MK
15import org.eclipse.jdt.annotation.NonNullByDefault;
16
c26d0fe0
AM
17/**
18 * Non-externalized strings for use with the CTF plugin (event names, field
19 * names, etc.)
20 *
21 * @author Alexandre Montplaisir
46a59db7 22 * @since 2.2
c26d0fe0
AM
23 */
24@SuppressWarnings("nls")
a4fa4e36 25@NonNullByDefault
c26d0fe0
AM
26public interface CTFStrings {
27
28 /** Event name for lost events */
f068c622 29 String LOST_EVENT_NAME = "Lost event";
c26d0fe0
AM
30
31 /**
32 * Name of the field in lost events indicating how many actual events were
33 * lost
34 */
f068c622 35 String LOST_EVENTS_FIELD = "Lost events";
c26d0fe0
AM
36
37 /**
38 * Name of the field in lost events indicating the time range
39 */
f068c622 40 String LOST_EVENTS_DURATION = "duration";
c26d0fe0 41}
This page took 0.040253 seconds and 5 git commands to generate.