eu.mihosoft.vmf.vmftext.grammar.UPRuleBase Maven / Gradle / Ivy
The newest version!
package eu.mihosoft.vmf.vmftext.grammar;
// vmf imports
//import eu.mihosoft.vmf.runtime.core.*;
import eu.mihosoft.vcollections.*;
// property types imports
// interface
/**
* An interface-only representation of the model object {@code eu.mihosoft.vmf.vmftext.grammar.UPRuleBase}.
*
*
*
*
*/
public interface UPRuleBase extends eu.mihosoft.vmf.runtime.core.VObject, WithId, Cloneable, eu.mihosoft.vmf.runtime.core.Mutable {
/**
* Returns the value of the 'alternatives' containment list.
*
* It is bidirectional and its opposite is '{@link AlternativeBase#getParentRule() parentRule}'.
*
*
*
*
* @return the value of the 'alternatives' containment list.
*/
eu.mihosoft.vcollections.VList getAlternatives();
// --------------------------------------------------------------------
// --- declaration of delegation methods
// --------------------------------------------------------------------
/**
* Returns a read-only wrapper of '{@link UPRuleBase UPRuleBase}'
* @return a read-only wrapper of '{@link UPRuleBase UPRuleBase}'
*/
ReadOnlyUPRuleBase asReadOnly();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
UPRuleBase clone() /*throws CloneNotSupportedException*/;
}