eu.mihosoft.vmf.vmftext.grammar.ReadOnlyDelegationMethod 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.DelegationMethod}.
*
*
*
*
*/
public interface ReadOnlyDelegationMethod extends eu.mihosoft.vmf.runtime.core.VObject, ReadOnlyWithText, eu.mihosoft.vmf.runtime.core.ReadOnly {
/**
* Returns the value of the 'parent' container reference.
*
* It is bidirectional and its opposite is '{@link ReadOnlyRuleClass#getDelegationMethods() delegationMethods}'.
*
*
*
*
* @return the value of the 'parent' container reference.
* @see DelegationMethod#\setParent(eu.mihosoft.vmf.vmftext.grammar.RuleClass)
*/
public ReadOnlyRuleClass getParent();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
public ReadOnlyDelegationMethod clone();
@Override
default ReadOnlyDelegationMethod asReadOnly() {
return this;
}
/**
* Returns a modifiable deep clone of this object.
* @return a modifiable deep clone of this object
*/
DelegationMethod asModifiable();
}