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/reply/ivalue/GetValueString_Reply.java')
-rw-r--r--extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/reply/ivalue/GetValueString_Reply.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/reply/ivalue/GetValueString_Reply.java b/extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/reply/ivalue/GetValueString_Reply.java
deleted file mode 100644
index 1844bfda1ac..00000000000
--- a/extraplugins/moka/org.eclipse.papyrus.moka/src/org/eclipse/papyrus/moka/communication/reply/ivalue/GetValueString_Reply.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*****************************************************************************
- * 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.reply.ivalue;
-
-import org.eclipse.papyrus.moka.communication.Marshaller;
-import org.eclipse.papyrus.moka.communication.reply.ReplyMessage;
-
-/**
- * A reply message, emitted by the execution engine in response
- * to a GetValueString_Request
- *
- */
-public class GetValueString_Reply extends ReplyMessage {
-
- /**
- * The textual value representation associated with this reply message
- */
- protected String textualRepresentation;
-
- /**
- * Constructs a reply message from a string
- *
- * @param textualRepresentation
- * The textual value representation associated with this reply message
- */
- public GetValueString_Reply(String textualRepresentation) {
- super();
- this.textualRepresentation = textualRepresentation;
- }
-
- /**
- * Returns The textual value representation associated with this reply message
- *
- * @return The textual value representation associated with this reply message
- */
- public String getValueString() {
- return this.textualRepresentation;
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.papyrus.moka.communication.reply.ReplyMessage#marshal()
- */
- @Override
- public String marshal() {
- return Marshaller.getInstance().getValueString_reply_marshal(this);
- }
-
-}

Back to the top