(no commit message)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / timeAnalysis / Messages.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2008, 2009, 2010 IBM Corporation, Intel Corporation, Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 * $Id: UIMessages.java,v 1.18 2008/06/03 16:53:41 aalexeev Exp $
9 *
10 * Contributors:
11 * IBM - Initial API and implementation
12 * Alvaro Sanchez-Leon - Stripped down for TMF
13 **********************************************************************/
14
15 package org.eclipse.linuxtools.tmf.ui.viewers.timeAnalysis;
16
17 import org.eclipse.osgi.util.NLS;
18
19 public class Messages {
20
21 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.viewers.timeAnalysis.messages"; //$NON-NLS-1$
22 public static String TRACE_STATES_TITLE;
23
24 public static String _TRACE_ID;
25 public static String _TRACE_NAME;
26 public static String _TRACE_CLASS_NAME;
27 public static String _TRACE_GROUP_NAME;
28 public static String _TRACE_START_TIME;
29 public static String _TRACE_EVENT_TIME;
30 public static String _TRACE_DATE;
31 public static String _TRACE_STOP_TIME;
32 public static String _TRACE_STATE;
33 public static String _NUMBER_OF_TRACES;
34 public static String _TRACE_FILTER;
35 public static String _TRACE_FILTER_DESC;
36 // misc
37 public static String _Timescale;
38 public static String _DURATION;
39 public static String _UNDEFINED_GROUP;
40 public static String _TRACE_GROUP_LABEL;
41 public static String _EDIT_PROFILING_OPTIONS;
42
43 public static String _LEGEND;
44 public static String _TRACE_STATES;
45 public static String _WINDOW_TITLE;
46
47 private Messages() {
48 // Do not instantiate
49 }
50
51 static {
52 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
53 }
54 }
This page took 0.032185 seconds and 5 git commands to generate.