Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.tests / src / org / eclipse / linuxtools / lttng / tests / state / handlers / after / StateAfterUpdateFactory.java
index 39bde083dc4a96618662b2094ac5840acce17bcf..7042ea162a49a35871c9973e83eba96f4fd51910 100644 (file)
@@ -15,7 +15,7 @@ import java.util.HashMap;
 import java.util.Map;
 
 import org.eclipse.linuxtools.lttng.state.StateStrings;
-import org.eclipse.linuxtools.lttng.state.evProcessor.IEventProcessing;
+import org.eclipse.linuxtools.lttng.state.evProcessor.ILttngEventProcessor;
 
 /**
  * Builds a Map from string event name to a processing handler object, the
@@ -32,7 +32,7 @@ public class StateAfterUpdateFactory {
        // ========================================================================
        // Data
        // =======================================================================
-       private final Map<String, IEventProcessing> eventNametoProcessor = new HashMap<String, IEventProcessing>();
+       private final Map<String, ILttngEventProcessor> eventNametoProcessor = new HashMap<String, ILttngEventProcessor>();
        private static StateAfterUpdateFactory instance = null;
        private StateAfterUpdateHandlers instantiateHandler = new StateAfterUpdateHandlers();
 
@@ -154,7 +154,7 @@ public class StateAfterUpdateFactory {
         * 
         * @return The Event Handler corresponding to the type of event
         */
-       public IEventProcessing getEventNametoProcessor(String eventType) {
+       public ILttngEventProcessor getEventNametoProcessor(String eventType) {
                return eventNametoProcessor.get(eventType);
        }
 }
This page took 0.024102 seconds and 5 git commands to generate.