eu.mihosoft.vmf.vmftext.grammar.ReadOnlyUPRuleBase 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 read-only representation of the model object {@code eu.mihosoft.vmf.vmftext.grammar.UPRuleBase}.
*
*
*
*
*/
public interface ReadOnlyUPRuleBase extends eu.mihosoft.vmf.runtime.core.VObject, ReadOnlyWithId, eu.mihosoft.vmf.runtime.core.ReadOnly {
/**
* Returns the value of the 'alternatives' containment list.
*
* It is bidirectional and its opposite is '{@link ReadOnlyAlternativeBase#getParentRule() parentRule}'.
*
*
*
*
* @return the value of the 'alternatives' containment list.
*/
// generic model type
public VList getAlternatives();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
public ReadOnlyUPRuleBase clone();
@Override
default ReadOnlyUPRuleBase asReadOnly() {
return this;
}
}