Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/uml2sd/ITmfSyncSequenceDiagramEvent.java')
-rw-r--r--tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/uml2sd/ITmfSyncSequenceDiagramEvent.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/uml2sd/ITmfSyncSequenceDiagramEvent.java b/tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/uml2sd/ITmfSyncSequenceDiagramEvent.java
new file mode 100644
index 0000000000..7c2d5bb3b9
--- /dev/null
+++ b/tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/uml2sd/ITmfSyncSequenceDiagramEvent.java
@@ -0,0 +1,52 @@
+/**********************************************************************
+ * Copyright (c) 2011, 2014 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:
+ * Bernd Hufmann - Initial API and implementation
+ **********************************************************************/
+package org.eclipse.tracecompass.tmf.core.uml2sd;
+
+import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
+
+/**
+ * <p>
+ * Interface for synchronous sequence diagram events.
+ * </p>
+ *
+ * @author Bernd Hufmann
+ */
+public interface ITmfSyncSequenceDiagramEvent {
+
+ /**
+ * Returns Name of message.
+ *
+ * @return Name of message
+ */
+ String getName();
+
+ /**
+ * Returns name of sender of message.
+ *
+ * @return name of sender of message
+ */
+ String getSender();
+
+ /**
+ * Returns Name of receiver of message.
+ *
+ * @return Name of receiver of message
+ */
+ String getReceiver();
+
+ /**
+ * Returns Start time of message (i.e. send time).
+ *
+ * @return Start timestamp of message (i.e. send time)
+ */
+ ITmfTimestamp getStartTime();
+}

Back to the top