Fix NLS-related Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core / src / org / eclipse / linuxtools / internal / lttng2 / kernel / core / Attributes.java
1 /*******************************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made 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.internal.lttng2.kernel.core;
14
15 /**
16 * This file defines all the attribute names used in the handler. Both the
17 * construction and query steps should use them.
18 *
19 * These should not be externalized! The values here are used as-is in the
20 * history file on disk, so they should be kept the same to keep the file format
21 * compatible. If a view shows attribute names directly, the localization should
22 * be done on the viewer side.
23 *
24 * @author alexmont
25 *
26 */
27 @SuppressWarnings({"nls", "javadoc"})
28 public interface Attributes {
29
30 /* First-level attributes */
31 static final String CPUS = "CPUs";
32 static final String THREADS = "Threads";
33 static final String RESOURCES = "Resources";
34
35 /* Sub-attributes of the CPU nodes */
36 static final String CURRENT_THREAD = "Current_thread";
37 static final String STATUS = "Status";
38
39 /* Sub-attributes of the Thread nodes */
40 static final String PPID = "PPID";
41 //static final String STATUS = "Status"
42 static final String EXEC_NAME = "Exec_name";
43 static final String SYSTEM_CALL = "System_call";
44
45 /* Attributes under "Resources" */
46 static final String IRQS = "IRQs";
47 static final String SOFT_IRQS = "Soft_IRQs";
48
49 /* Misc stuff */
50 static final String UNKNOWN = "Unknown";
51 }
This page took 0.031056 seconds and 5 git commands to generate.