Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/ITmfEventType.java')
-rw-r--r--lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/ITmfEventType.java69
1 files changed, 0 insertions, 69 deletions
diff --git a/lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/ITmfEventType.java b/lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/ITmfEventType.java
deleted file mode 100644
index 07dd4b3e5e..0000000000
--- a/lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/ITmfEventType.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2012, 2013 Ericsson
- *
- * All rights reserved. This program and the accompanying materials are
- * made available under the terms of the Eclipse Public License v1.0 which
- * accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Francois Chouinard - Initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.linuxtools.tmf.core.event;
-
-import java.util.Collection;
-
-/**
- * The generic event type in TMF. It contains a reference to the full field structure
- * for that event type.
- * <p>
- * Types are unique within their context space.
- *
- * @version 1.0
- * @author Francois Chouinard
- *
- * @see ITmfEvent
- * @see ITmfEventField
- */
-public interface ITmfEventType {
-
- // ------------------------------------------------------------------------
- // Constants
- // ------------------------------------------------------------------------
-
- /**
- * The default event type content
- */
- public static final String DEFAULT_CONTEXT_ID = "TmfContext"; //$NON-NLS-1$
-
- /**
- * The default event type name
- */
- public static final String DEFAULT_TYPE_ID = "TmfType"; //$NON-NLS-1$
-
- // ------------------------------------------------------------------------
- // Getters
- // ------------------------------------------------------------------------
-
- /**
- * @return the event type context
- */
- String getContext();
-
- /**
- * @return the event type ID
- */
- String getName();
-
- /**
- * @return the event type root field
- */
- ITmfEventField getRootField();
-
- /**
- * @return the event field names (labels)
- * @since 3.0
- */
- Collection<String> getFieldNames();
-}

Back to the top