gdbtrace: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / linuxtools / ctf / core / event / scope / FieldsScope.java
CommitLineData
70f60307
MK
1/*******************************************************************************
2 * Copyright (c) 2014 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 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.ctf.core.event.scope;
14
15import org.eclipse.jdt.annotation.NonNullByDefault;
16import org.eclipse.jdt.annotation.Nullable;
17
18/**
19 * A lttng specific speedup node field scope of a lexical scope
20 *
21 * @author Matthew Khouzam
22 * @since 3.1
23 */
24@NonNullByDefault
25public class FieldsScope extends LexicalScope {
26
27 /**
28 * ret field
29 */
30 public static final LexicalScope FIELDS_RET = new LexicalScope(FIELDS, "_ret"); //$NON-NLS-1$
31
32 /**
33 * tid field
34 */
35 public static final LexicalScope FIELDS_TID = new LexicalScope(FIELDS, "_tid"); //$NON-NLS-1$
36
37 /**
38 * The scope constructor
39 *
40 * @param parent
41 * The parent node, can be null, but shouldn't
42 * @param name
43 * the name of the field
44 */
45 public FieldsScope(LexicalScope parent, String name) {
46 super(parent, name);
47 }
48
49 @Override
50 @Nullable
51 public LexicalScope getChild(String name) {
52 if (name.equals(FIELDS_RET.getName())) {
53 return FIELDS_RET;
54 }
55 if (name.equals(FIELDS_TID.getName())) {
56 return FIELDS_TID;
57 }
58 return super.getChild(name);
59 }
60
61}
This page took 0.03196 seconds and 5 git commands to generate.