eu.mihosoft.vmf.vmftext.grammar.Alternative 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.Alternative}.
*
*
*
*
*/
public interface Alternative extends eu.mihosoft.vmf.runtime.core.VObject, AlternativeBase, Cloneable, eu.mihosoft.vmf.runtime.core.Mutable {
// --------------------------------------------------------------------
// --- declaration of delegation methods
// --------------------------------------------------------------------
// --------------------------------------------------------------------
// --- Builder methods
// --------------------------------------------------------------------
public static interface Builder {
/**
* Sets the 'elements' property of this builder.
* @param elements value to set
* @return this builder
*/
public Builder withElements(eu.mihosoft.vcollections.VList elements);
/**
* Sets the 'id' property of this builder.
* @param id value to set
* @return this builder
*/
public Builder withId(int id);
/**
* 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.Alternative Alternative}' instance.
* @return a new '{@link eu.mihosoft.vmf.vmftext.grammar.Alternative Alternative}' instance
*/
public Alternative build();
/**
* Defines whether to append collections rather than replacing them in the
* {@link #applyFrom(Alternative)} and {@link #applyTo(Alternative)} 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(Alternative)
*/
public Builder applyFrom(Alternative o);
/**
* Applies all properties from this builder to the specified object.
* @param o object to apply properties to
* @return this builder
* @see #applyFrom(Alternative)
*/
public Builder applyTo(Alternative o);
} // end class Builder
/**
* Returns a new builder for creating a '{@link eu.mihosoft.vmf.vmftext.grammar.Alternative Alternative}' instance.
* @return a new builder for creating a '{@link eu.mihosoft.vmf.vmftext.grammar.Alternative Alternative}' instance
*/
static Builder newBuilder() {
return __VMF__Alternative_Creator.newBuilderInstance();
} // end newBuilder()
/**
* Creates a new instance of '{@link Alternative Alternative}'
* @return a new instance of '{@link Alternative Alternative}'
*/
static Alternative newInstance() {
return __VMF__Alternative_Creator.newInstance();
}
/**
* Returns a read-only wrapper of '{@link Alternative Alternative}'
* @return a read-only wrapper of '{@link Alternative Alternative}'
*/
ReadOnlyAlternative asReadOnly();
/**
* Returns a deep clone of this object.
* @return a deep clone of this object
*/
@Override
Alternative clone() /*throws CloneNotSupportedException*/;
}
/*
* Creates instances of type {@codeeu.mihosoft.vmf.vmftext.grammar.impl.AlternativeImpl}. 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__Alternative_Creator {
static Class> cls;
static java.lang.reflect.Constructor constructor;
static java.lang.invoke.MethodHandles.Lookup lookup;
static java.lang.invoke.MethodHandle constructorMH;
static Alternative newInstance() {
try {
if(cls==null) {
cls = Class.forName("eu.mihosoft.vmf.vmftext.grammar.impl.AlternativeImpl");
if(lookup==null) { lookup = java.lang.invoke.MethodHandles.lookup(); }
constructor = cls.getConstructor();
constructor.setAccessible(true);
constructorMH = lookup.unreflectConstructor(constructor);
}
return (Alternative) constructorMH.invoke();
} catch (Throwable tr) {
throw new RuntimeException("Cannot instantiate \"eu.mihosoft.vmf.vmftext.grammar.impl.AlternativeImpl\"", tr);
}
}
static Class> builderCls;
static java.lang.reflect.Constructor builderConstructor;
static java.lang.invoke.MethodHandle builderConstructorMH;
static Alternative.Builder newBuilderInstance() {
try {
if(builderCls==null) {
builderCls = Class.forName("eu.mihosoft.vmf.vmftext.grammar.impl.AlternativeImpl$BuilderImpl");
if(lookup==null) { lookup = java.lang.invoke.MethodHandles.lookup(); }
builderConstructor = builderCls.getConstructor();
builderConstructor.setAccessible(true);
builderConstructorMH = lookup.unreflectConstructor(builderConstructor);
}
return (Alternative.Builder) builderConstructorMH.invoke();
} catch (Throwable tr) {
throw new RuntimeException("Cannot instantiate \"eu.mihosoft.vmf.vmftext.grammar.impl.AlternativeImpl\"", tr);
}
}
}