tmf: Enable project-specific compiler settings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / ITmfEventField.java
CommitLineData
5179fc01
FC
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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.core.event;
14
15/**
f7703ed6 16 * The generic event payload in TMF. Each field can be either a terminal or
4c564a2d 17 * further decomposed into subfields.
b9e37ffd 18 *
b9e37ffd
FC
19 * @version 1.0
20 * @author Francois Chouinard
21 *
b9e37ffd 22 * @see ITmfEvent
2848c377 23 * @see ITmfEventType
5179fc01 24 */
0316808c 25public interface ITmfEventField {
5179fc01 26
a4115405
FC
27 // ------------------------------------------------------------------------
28 // Constants
29 // ------------------------------------------------------------------------
30
4c564a2d
FC
31 /**
32 * The root field id (the main container)
33 */
a4115405 34 public static final String ROOT_FIELD_ID = ":root:"; //$NON-NLS-1$
085d898f 35
a4115405
FC
36 // ------------------------------------------------------------------------
37 // Getters
38 // ------------------------------------------------------------------------
39
5179fc01 40 /**
d7dbf09a 41 * @return the field name
5179fc01 42 */
4c564a2d 43 public String getName();
5179fc01
FC
44
45 /**
46 * @return the field value
47 */
48 public Object getValue();
49
50 /**
f7703ed6 51 * @return the list of subfield names (empty array if none)
4c564a2d
FC
52 */
53 public String[] getFieldNames();
54
55 /**
56 * @return the nth field name (null if absent or inexistent)
57 */
58 public String getFieldName(int index);
59
60 /**
f7703ed6 61 * @return the list of subfields (empty array if none)
4c564a2d
FC
62 */
63 public ITmfEventField[] getFields();
64
65 /**
66 * @return a specific subfield by name (null if absent or inexistent)
67 */
68 public ITmfEventField getField(String name);
69
70 /**
71 * @return a specific subfield by index (null if absent or inexistent)
5179fc01 72 */
4c564a2d 73 public ITmfEventField getField(int index);
5179fc01 74
7636a88e 75 /**
f7703ed6 76 * @return a clone of the event field
7636a88e 77 */
cbbcc354 78 public ITmfEventField clone();
7636a88e 79
5179fc01 80}
This page took 0.034619 seconds and 5 git commands to generate.