[WIP] CFV Refactor
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / internal / provisional / tmf / core / views / timegraph2 / TimeGraphArrow.java
diff --git a/tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/internal/provisional/tmf/core/views/timegraph2/TimeGraphArrow.java b/tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/internal/provisional/tmf/core/views/timegraph2/TimeGraphArrow.java
new file mode 100644 (file)
index 0000000..f1c4b21
--- /dev/null
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2016 EfficiOS Inc., Alexandre Montplaisir
+ *
+ * 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
+ *******************************************************************************/
+
+package org.eclipse.tracecompass.internal.provisional.tmf.core.views.timegraph2;
+
+public class TimeGraphArrow {
+
+    private final TimeGraphEvent fStartEvent;
+    private final TimeGraphEvent fEndEvent;
+
+    public TimeGraphArrow(TimeGraphEvent startEvent, TimeGraphEvent endEvent) {
+        fStartEvent = startEvent;
+        fEndEvent = endEvent;
+    }
+
+    public TimeGraphEvent getStartEvent() {
+        return fStartEvent;
+    }
+
+    public TimeGraphEvent getEndEvent() {
+        return fEndEvent;
+    }
+
+}
This page took 0.02499 seconds and 5 git commands to generate.