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