eu.mihosoft.vmf.vmftext.grammar.ReadOnlyLabeledAlternative 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.LabeledAlternative}.
*
*
*
*
*/
public interface ReadOnlyLabeledAlternative extends eu.mihosoft.vmf.runtime.core.VObject, ReadOnlyAlternative,ReadOnlyWithName, eu.mihosoft.vmf.runtime.core.ReadOnly {
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
public ReadOnlyLabeledAlternative clone();
@Override
default ReadOnlyLabeledAlternative asReadOnly() {
return this;
}
/**
* Returns a modifiable deep clone of this object.
* @return a modifiable deep clone of this object
*/
LabeledAlternative asModifiable();
}