Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/request/RequestMessage.java')
-rw-r--r--extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/request/RequestMessage.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/request/RequestMessage.java b/extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/request/RequestMessage.java
new file mode 100644
index 00000000000..868c0e2709a
--- /dev/null
+++ b/extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/request/RequestMessage.java
@@ -0,0 +1,30 @@
+/*****************************************************************************
+ * Copyright (c) 2013 CEA LIST.
+ *
+ *
+ * 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:
+ * CEA LIST - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.moka.communication.request;
+
+/**
+ * Abstract class representing communication of a request
+ *
+ */
+public abstract class RequestMessage {
+
+ /**
+ * Marshal this Request message, so that it can be communicated between
+ * the debug target and the actual execution engine
+ *
+ * @return A String encoding of this request message
+ */
+ public abstract String marshall() ;
+
+}

Back to the top