rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / ctf / core / event / types / ICompositeDefinition.java
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
13 package org.eclipse.tracecompass.ctf.core.event.types;
14
15 import java.util.List;
16
17 /**
18 * Interface for data definitions containing heterogenous definitions
19 * (subfields)
20 *
21 * @author Matthew Khouzam
22 */
23 public interface ICompositeDefinition extends IDefinition {
24
25 /**
26 * Gets the definition of the field
27 *
28 * @param fieldName
29 * the fieldname
30 * @return The definitions of all the fields
31 */
32 Definition getDefinition(String fieldName);
33
34 /**
35 * Gets an array of the field names
36 *
37 * @return the field names array
38 */
39 List<String> getFieldNames();
40
41 }
This page took 0.032204 seconds and 5 git commands to generate.