/** */ package org.opendaylight.nemo.tool.eclipse.plugin.editor; /** * * A representation of the model object 'Flow'. * * *

* The following features are supported: *

* * * @see org.opendaylight.nemo.tool.eclipse.plugin.editor.EditorPackage#getFlow() * @model * @generated */ public interface Flow 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#getFlow_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.opendaylight.nemo.tool.eclipse.plugin.editor.Flow#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // Flow