Add missing package exports
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / analysis / os / linux / core / kernelanalysis / Attributes.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2015 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.tracecompass.analysis.os.linux.core.kernelanalysis;
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 String CPUS = "CPUs";
32 String THREADS = "Threads";
33
34 /* Sub-attributes of the CPU nodes */
35 String CURRENT_THREAD = "Current_thread";
36 String STATUS = "Status";
37 String SOFT_IRQS = "Soft_IRQs";
38 String IRQS = "IRQs";
39
40 /* Sub-attributes of the Thread nodes */
41 String PPID = "PPID";
42 //static final String STATUS = "Status"
43 String EXEC_NAME = "Exec_name";
44
45 /** @since 1.0 */
46 String PRIO = "Prio";
47 String SYSTEM_CALL = "System_call";
48
49 /* Misc stuff */
50 String UNKNOWN = "Unknown";
51 }
This page took 0.036007 seconds and 5 git commands to generate.