All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.mihosoft.vmf.vmftext.grammar.UPRule 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.UPRule}.
 *
 * 
 * 
 *
 */
public interface UPRule extends eu.mihosoft.vmf.runtime.core.VObject, WithName,UPRuleBase, 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.UnparserModel#getRules() rules}'.
 *
 * 
 * 
 *
 * @return the value of the 'parent' container reference.
 * @see UPRule#setParent(eu.mihosoft.vmf.vmftext.grammar.UnparserModel)
 */
 eu.mihosoft.vmf.vmftext.grammar.UnparserModel getParent();

 /**
  * Sets the value of the 'parent' property.
  *
  * 
  * 
  *
  * @param parent the value to set
  * @see UPRule#getParent()
  */
  void setParent(eu.mihosoft.vmf.vmftext.grammar.UnparserModel parent);



// --------------------------------------------------------------------
// --- declaration of delegation methods
// --------------------------------------------------------------------




// --------------------------------------------------------------------
// --- Builder methods
// --------------------------------------------------------------------

  public static interface Builder {

    /**
     * Sets the 'alternatives' property of this builder.
     * @param alternatives value to set
     * @return this builder
     */
    public Builder withAlternatives(eu.mihosoft.vcollections.VList alternatives);
    /**
     * Sets the 'id' property of this builder.
     * @param id value to set
     * @return this builder
     */
    public Builder withId(int id);
    /**
     * Sets the 'name' property of this builder.
     * @param name value to set
     * @return this builder
     */
    public Builder withName(java.lang.String name);

  /**
   * Builds a new '{@link eu.mihosoft.vmf.vmftext.grammar.UPRule UPRule}' instance.
   * @return a new '{@link eu.mihosoft.vmf.vmftext.grammar.UPRule UPRule}' instance
   */
  public UPRule build();

    /**
     * Defines whether to append collections rather than replacing them in the
     * {@link #applyFrom(UPRule)} and {@link #applyTo(UPRule)} 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(UPRule)
     */
    public Builder applyFrom(UPRule o);

    /**
     * Applies all properties from this builder to the specified object.
     * @param o object to apply properties to
     * @return this builder
     * @see #applyFrom(UPRule)
     */
    public Builder applyTo(UPRule o);

  } // end class Builder

  /**
   * Returns a new builder for creating a '{@link eu.mihosoft.vmf.vmftext.grammar.UPRule UPRule}' instance.
   * @return a new builder for creating a '{@link eu.mihosoft.vmf.vmftext.grammar.UPRule UPRule}' instance
   */
  static Builder newBuilder() {
    return __VMF__UPRule_Creator.newBuilderInstance();
  } // end newBuilder()


  /**
   * Creates a new instance of '{@link UPRule UPRule}'
   * @return a new instance of '{@link UPRule UPRule}'
   */
  static UPRule newInstance() {

    return __VMF__UPRule_Creator.newInstance();


  }

  /**
   * Returns a read-only wrapper of '{@link UPRule UPRule}'
   * @return a read-only wrapper of '{@link UPRule UPRule}'
   */
  ReadOnlyUPRule asReadOnly();

  /**
   * Returns a deep clone of this object.
   * @return a deep clone of this object
   */
  @Override
  UPRule clone() /*throws CloneNotSupportedException*/;

}

/*
 *  Creates instances of type {@codeeu.mihosoft.vmf.vmftext.grammar.impl.UPRuleImpl}. 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__UPRule_Creator {

    static Class cls;
    static java.lang.reflect.Constructor constructor;
    static java.lang.invoke.MethodHandles.Lookup lookup;
    static java.lang.invoke.MethodHandle constructorMH;

    static UPRule newInstance() {
        try {

            if(cls==null) {
                cls = Class.forName("eu.mihosoft.vmf.vmftext.grammar.impl.UPRuleImpl");

                if(lookup==null) { lookup = java.lang.invoke.MethodHandles.lookup(); }

                constructor = cls.getConstructor();
                constructor.setAccessible(true);

                constructorMH = lookup.unreflectConstructor(constructor);
            }

            return (UPRule) constructorMH.invoke();

        } catch (Throwable tr) {
            throw new RuntimeException("Cannot instantiate \"eu.mihosoft.vmf.vmftext.grammar.impl.UPRuleImpl\"", tr);
        }
    }

    static Class builderCls;
    static java.lang.reflect.Constructor builderConstructor;
    static java.lang.invoke.MethodHandle builderConstructorMH;

    static UPRule.Builder newBuilderInstance() {
        try {
            if(builderCls==null) {
                builderCls = Class.forName("eu.mihosoft.vmf.vmftext.grammar.impl.UPRuleImpl$BuilderImpl");

                if(lookup==null) { lookup = java.lang.invoke.MethodHandles.lookup(); }

                builderConstructor = builderCls.getConstructor();
                builderConstructor.setAccessible(true);

                builderConstructorMH = lookup.unreflectConstructor(builderConstructor);
            }

            return (UPRule.Builder) builderConstructorMH.invoke();

        } catch (Throwable tr) {
            throw new RuntimeException("Cannot instantiate \"eu.mihosoft.vmf.vmftext.grammar.impl.UPRuleImpl\"", tr);
        }
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy