Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / ctf / core / CTFStrings.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 Ericsson
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
13 package org.eclipse.tracecompass.ctf.core;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18 * Non-externalized strings for use with the CTF plugin (event names, field
19 * names, etc.)
20 *
21 * @author Alexandre Montplaisir
22 */
23 @SuppressWarnings("nls")
24 @NonNullByDefault
25 public interface CTFStrings {
26
27 /** Event name for lost events */
28 String LOST_EVENT_NAME = "Lost event";
29
30 /**
31 * Name of the field in lost events indicating how many actual events were
32 * lost
33 */
34 String LOST_EVENTS_FIELD = "Lost events";
35
36 /**
37 * Name of the field in lost events indicating the time range
38 */
39 String LOST_EVENTS_DURATION = "duration";
40 }
This page took 0.031487 seconds and 5 git commands to generate.