eu.mihosoft.vmf.vmftext.grammar.ReadOnlyUnparserModel 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.UnparserModel}.
*
*
*
*
*/
public interface ReadOnlyUnparserModel extends eu.mihosoft.vmf.runtime.core.VObject, eu.mihosoft.vmf.runtime.core.ReadOnly {
/**
* Returns the value of the 'lexerRules' containment list.
*
* It is bidirectional and its opposite is '{@link ReadOnlyUPLexerRule#getParent() parent}'.
*
*
*
*
* @return the value of the 'lexerRules' containment list.
*/
// generic model type
public VList getLexerRules();
/**
* Returns the value of the 'rules' containment list.
*
* It is bidirectional and its opposite is '{@link ReadOnlyUPRule#getParent() parent}'.
*
*
*
*
* @return the value of the 'rules' containment list.
*/
// generic model type
public VList getRules();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
public ReadOnlyUnparserModel clone();
@Override
default ReadOnlyUnparserModel asReadOnly() {
return this;
}
/**
* Returns a modifiable deep clone of this object.
* @return a modifiable deep clone of this object
*/
UnparserModel asModifiable();
}