Use transparent color for unknown states in ControlFlow/Resources view
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.ui / src / org / eclipse / linuxtools / internal / lttng2 / kernel / ui / views / controlflow / ControlFlowEvent.java
index 5651b1ca5adee2852c17ee520beb1fbbfc0f4625..b84f5dd03dbab851f47b2d1395248bb359226a4a 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2012 Ericsson
+ * 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
@@ -48,4 +48,9 @@ public class ControlFlowEvent extends TimeEvent {
     public int getStatus() {
         return fStatus;
     }
+
+    @Override
+    public String toString() {
+        return "ControlFlowEvent start=" + fTime + " end=" + (fTime + fDuration) + " duration=" + fDuration + " status=" + fStatus; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+    }
 }
This page took 0.035012 seconds and 5 git commands to generate.