/** */ package org.opendaylight.nemo.tool.eclipse.plugin.editor; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Operation'. * * *

* The following features are supported: *

* * * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getOperation() * @model * @generated */ public interface Operation extends Sentence { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getOperation_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.opendaylight.nemo.tool.eclipse.plugin.editor.Operation#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Value' attribute list. * The list contents are of type {@link java.lang.Integer}. * *

* If the meaning of the 'Value' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value' attribute list. * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getOperation_Value() * @model unique="false" * @generated */ EList getValue(); /** * Returns the value of the 'Target Id' reference. * *

* If the meaning of the 'Target Id' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Target Id' reference. * @see #setTargetId(Flow) * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getOperation_TargetId() * @model * @generated */ Flow getTargetId(); /** * Sets the value of the '{@link org.opendaylight.nemo.tool.eclipse.plugin.editor.Operation#getTargetId Target Id}' reference. * * * @param value the new value of the 'Target Id' reference. * @see #getTargetId() * @generated */ void setTargetId(Flow value); /** * Returns the value of the 'Target Node' reference. * *

* If the meaning of the 'Target Node' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Target Node' reference. * @see #setTargetNode(Node) * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getOperation_TargetNode() * @model * @generated */ Node getTargetNode(); /** * Sets the value of the '{@link org.opendaylight.nemo.tool.eclipse.plugin.editor.Operation#getTargetNode Target Node}' reference. * * * @param value the new value of the 'Target Node' reference. * @see #getTargetNode() * @generated */ void setTargetNode(Node value); } // Operation