ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.analysis.xml.core / src / org / eclipse / linuxtools / tmf / analysis / xml / core / model / TmfXmlStateChange.java
index f9b23680d6e6bd16971a489e162990f4aa4dedb7..f21e3223818deb7d5d8bc0eff0172c7a4ad3f6a1 100644 (file)
@@ -110,6 +110,11 @@ public class TmfXmlStateChange {
         fChange.handleEvent(event);
     }
 
+    @Override
+    public String toString() {
+        return "TmfXmlStateChange: " + fChange; //$NON-NLS-1$
+    }
+
     /* Interface for both private classes to handle the event */
     private interface IXmlStateChange {
         void handleEvent(@NonNull ITmfEvent event) throws AttributeNotFoundException, StateValueTypeException, TimeRangeException;
@@ -164,6 +169,11 @@ public class TmfXmlStateChange {
             }
             toExecute.handleEvent(event);
         }
+
+        @Override
+        public String toString() {
+            return "Condition: " + fCondition; //$NON-NLS-1$
+        }
     }
 
     /**
@@ -198,6 +208,11 @@ public class TmfXmlStateChange {
         public void handleEvent(@NonNull ITmfEvent event) throws AttributeNotFoundException, StateValueTypeException, TimeRangeException {
             fValue.handleEvent(event);
         }
+
+        @Override
+        public String toString() {
+            return "Value: " + fValue; //$NON-NLS-1$
+        }
     }
 
 }
\ No newline at end of file
This page took 0.024013 seconds and 5 git commands to generate.