eu.mihosoft.vmf.vmftext.grammar.ReadOnlyWithText 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.WithText}.
*
*
*
*
*/
public interface ReadOnlyWithText extends eu.mihosoft.vmf.runtime.core.VObject, eu.mihosoft.vmf.runtime.core.ReadOnly {
/**
* Returns the value of the 'text' property.
*
*
*
*
* @return the value of the 'text' property.
* @see WithText#\setText(java.lang.String)
*/
public java.lang.String getText();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
public ReadOnlyWithText clone();
@Override
default ReadOnlyWithText asReadOnly() {
return this;
}
}