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

eu.mihosoft.vmf.vmftext.grammar.ReadOnlyUPRule 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.UPRule}.
 *
 * 
 * 
 *
 */
public interface ReadOnlyUPRule extends eu.mihosoft.vmf.runtime.core.VObject, ReadOnlyWithName,ReadOnlyUPRuleBase, eu.mihosoft.vmf.runtime.core.ReadOnly {

/**
 * Returns the value of the 'parent' container reference.
 *
 * It is bidirectional and its opposite is '{@link ReadOnlyUnparserModel#getRules() rules}'.
 *
 * 
 * 
 *
 * @return the value of the 'parent' container reference.
 * @see UPRule#\setParent(eu.mihosoft.vmf.vmftext.grammar.UnparserModel)
 */
   public ReadOnlyUnparserModel getParent();
 
 
 /**
  * Returns a deep clone of this object.
  * @return a deep clone of this object
  */
  @Override
  public ReadOnlyUPRule clone();

  @Override
  default ReadOnlyUPRule asReadOnly() {
    return this;
  }

  /**
   * Returns a modifiable deep clone of this object.
   * @return a modifiable deep clone of this object
   */
  UPRule asModifiable();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy