Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / event / ITmfEventType.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2014 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
13 package org.eclipse.tracecompass.tmf.core.event;
14
15 import java.util.Collection;
16
17 /**
18 * The generic event type in TMF. It contains a reference to the full field structure
19 * for that event type.
20 * <p>
21 * Types are unique within their context space.
22 *
23 * @version 1.0
24 * @author Francois Chouinard
25 *
26 * @see ITmfEvent
27 * @see ITmfEventField
28 */
29 public interface ITmfEventType {
30
31 // ------------------------------------------------------------------------
32 // Constants
33 // ------------------------------------------------------------------------
34
35 /**
36 * The default event type name
37 */
38 String DEFAULT_TYPE_ID = "TmfType"; //$NON-NLS-1$
39
40 // ------------------------------------------------------------------------
41 // Getters
42 // ------------------------------------------------------------------------
43
44 /**
45 * @return the event type ID
46 */
47 String getName();
48
49 /**
50 * @return the event type root field
51 */
52 ITmfEventField getRootField();
53
54 /**
55 * @return the event field names (labels)
56 */
57 Collection<String> getFieldNames();
58 }
This page took 0.032419 seconds and 5 git commands to generate.