eu.mihosoft.vmf.vmftext.grammar.DelegationMethod 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
/**
* A representation of the model object {@code eu.mihosoft.vmf.vmftext.grammar.DelegationMethod}.
*
*
*
*
*/
public interface DelegationMethod extends eu.mihosoft.vmf.runtime.core.VObject, WithText, Cloneable, eu.mihosoft.vmf.runtime.core.Mutable {
/**
* Returns the value of the 'parent' container reference.
*
* It is bidirectional and its opposite is '{@link eu.mihosoft.vmf.vmftext.grammar.RuleClass#getDelegationMethods() delegationMethods}'.
*
*
*
*
* @return the value of the 'parent' container reference.
* @see DelegationMethod#setParent(eu.mihosoft.vmf.vmftext.grammar.RuleClass)
*/
eu.mihosoft.vmf.vmftext.grammar.RuleClass getParent();
/**
* Sets the value of the 'parent' property.
*
*
*
*
* @param parent the value to set
* @see DelegationMethod#getParent()
*/
void setParent(eu.mihosoft.vmf.vmftext.grammar.RuleClass parent);
// --------------------------------------------------------------------
// --- declaration of delegation methods
// --------------------------------------------------------------------
// --------------------------------------------------------------------
// --- Builder methods
// --------------------------------------------------------------------
public static interface Builder {
/**
* Sets the 'text' property of this builder.
* @param text value to set
* @return this builder
*/
public Builder withText(java.lang.String text);
/**
* Builds a new '{@link eu.mihosoft.vmf.vmftext.grammar.DelegationMethod DelegationMethod}' instance.
* @return a new '{@link eu.mihosoft.vmf.vmftext.grammar.DelegationMethod DelegationMethod}' instance
*/
public DelegationMethod build();
/**
* Defines whether to append collections rather than replacing them in the
* {@link #applyFrom(DelegationMethod)} and {@link #applyTo(DelegationMethod)} methods.
* @param value that indicates whether to append collections
* @return this builder
*/
public Builder appendCollections(boolean value);
/**
* Applies all properties from the specified object to this builder.
* @param o object to apply properties from
* @return this builder
* @see #applyTo(DelegationMethod)
*/
public Builder applyFrom(DelegationMethod o);
/**
* Applies all properties from this builder to the specified object.
* @param o object to apply properties to
* @return this builder
* @see #applyFrom(DelegationMethod)
*/
public Builder applyTo(DelegationMethod o);
} // end class Builder
/**
* Returns a new builder for creating a '{@link eu.mihosoft.vmf.vmftext.grammar.DelegationMethod DelegationMethod}' instance.
* @return a new builder for creating a '{@link eu.mihosoft.vmf.vmftext.grammar.DelegationMethod DelegationMethod}' instance
*/
static Builder newBuilder() {
return __VMF__DelegationMethod_Creator.newBuilderInstance();
} // end newBuilder()
/**
* Creates a new instance of '{@link DelegationMethod DelegationMethod}'
* @return a new instance of '{@link DelegationMethod DelegationMethod}'
*/
static DelegationMethod newInstance() {
return __VMF__DelegationMethod_Creator.newInstance();
}
/**
* Returns a read-only wrapper of '{@link DelegationMethod DelegationMethod}'
* @return a read-only wrapper of '{@link DelegationMethod DelegationMethod}'
*/
ReadOnlyDelegationMethod asReadOnly();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
DelegationMethod clone() /*throws CloneNotSupportedException*/;
}
/*
* Creates instances of type {@codeeu.mihosoft.vmf.vmftext.grammar.impl.DelegationMethodImpl}. Method handles
* and class objects are lazily initialized and cached since repetitive and high frequent usage is likely.
*
* This class is used to gain efficient avvess to private classes from the impl package.
*/
class __VMF__DelegationMethod_Creator {
static Class> cls;
static java.lang.reflect.Constructor constructor;
static java.lang.invoke.MethodHandles.Lookup lookup;
static java.lang.invoke.MethodHandle constructorMH;
static DelegationMethod newInstance() {
try {
if(cls==null) {
cls = Class.forName("eu.mihosoft.vmf.vmftext.grammar.impl.DelegationMethodImpl");
if(lookup==null) { lookup = java.lang.invoke.MethodHandles.lookup(); }
constructor = cls.getConstructor();
constructor.setAccessible(true);
constructorMH = lookup.unreflectConstructor(constructor);
}
return (DelegationMethod) constructorMH.invoke();
} catch (Throwable tr) {
throw new RuntimeException("Cannot instantiate \"eu.mihosoft.vmf.vmftext.grammar.impl.DelegationMethodImpl\"", tr);
}
}
static Class> builderCls;
static java.lang.reflect.Constructor builderConstructor;
static java.lang.invoke.MethodHandle builderConstructorMH;
static DelegationMethod.Builder newBuilderInstance() {
try {
if(builderCls==null) {
builderCls = Class.forName("eu.mihosoft.vmf.vmftext.grammar.impl.DelegationMethodImpl$BuilderImpl");
if(lookup==null) { lookup = java.lang.invoke.MethodHandles.lookup(); }
builderConstructor = builderCls.getConstructor();
builderConstructor.setAccessible(true);
builderConstructorMH = lookup.unreflectConstructor(builderConstructor);
}
return (DelegationMethod.Builder) builderConstructorMH.invoke();
} catch (Throwable tr) {
throw new RuntimeException("Cannot instantiate \"eu.mihosoft.vmf.vmftext.grammar.impl.DelegationMethodImpl\"", tr);
}
}
}