ctf: potential memory optimization
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / ctf / core / CTFStrings.java
CommitLineData
c26d0fe0
AM
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
13package org.eclipse.linuxtools.ctf.core;
14
15/**
16 * Non-externalized strings for use with the CTF plugin (event names, field
17 * names, etc.)
18 *
19 * @author Alexandre Montplaisir
46a59db7 20 * @since 2.2
c26d0fe0
AM
21 */
22@SuppressWarnings("nls")
23public interface CTFStrings {
24
25 /** Event name for lost events */
26 static final String LOST_EVENT_NAME = "Lost event";
27
28 /**
29 * Name of the field in lost events indicating how many actual events were
30 * lost
31 */
32 static final String LOST_EVENTS_FIELD = "Lost events";
33
34 /**
35 * Name of the field in lost events indicating the time range
36 */
37 static final String LOST_EVENTS_DURATION = "duration";
38}
This page took 0.030802 seconds and 5 git commands to generate.