eu.mihosoft.vmf.vmftext.grammar.CodeElement 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.CodeElement}.
*
*
*
*
*/
public interface CodeElement extends eu.mihosoft.vmf.runtime.core.VObject, Cloneable, eu.mihosoft.vmf.runtime.core.Mutable {
/**
* Returns the value of the 'codeRange' property.
*
*
*
*
* @return the value of the 'codeRange' property.
* @see CodeElement#setCodeRange(eu.mihosoft.vmf.vmftext.grammar.CodeRange)
*/
eu.mihosoft.vmf.vmftext.grammar.CodeRange getCodeRange();
/**
* Sets the value of the 'codeRange' property.
*
*
*
*
* @param codeRange the value to set
* @see CodeElement#getCodeRange()
*/
void setCodeRange(eu.mihosoft.vmf.vmftext.grammar.CodeRange codeRange);
// --------------------------------------------------------------------
// --- declaration of delegation methods
// --------------------------------------------------------------------
/**
* Returns a read-only wrapper of '{@link CodeElement CodeElement}'
* @return a read-only wrapper of '{@link CodeElement CodeElement}'
*/
ReadOnlyCodeElement asReadOnly();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
CodeElement clone() /*throws CloneNotSupportedException*/;
}