fd42aa1597aa559bfc0a462730f730eb521181a9
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / ctf / core / CTFStrings.java
1 /*******************************************************************************
2 * Copyright (c) 2013 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.linuxtools.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 * @since 2.2
23 */
24 @SuppressWarnings("nls")
25 @NonNullByDefault
26 public interface CTFStrings {
27
28 /** Event name for lost events */
29 static final String LOST_EVENT_NAME = "Lost event";
30
31 /**
32 * Name of the field in lost events indicating how many actual events were
33 * lost
34 */
35 static final String LOST_EVENTS_FIELD = "Lost events";
36
37 /**
38 * Name of the field in lost events indicating the time range
39 */
40 static final String LOST_EVENTS_DURATION = "duration";
41 }
This page took 0.031876 seconds and 4 git commands to generate.