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

eu.mihosoft.vmf.vmftext.grammar.ReadOnlyCustomRule Maven / Gradle / Ivy


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.CustomRule}.
 *
 * 
 * 
 *
 */
public interface ReadOnlyCustomRule extends eu.mihosoft.vmf.runtime.core.VObject, ReadOnlyWithText, eu.mihosoft.vmf.runtime.core.ReadOnly {

/**
 * Returns the value of the 'model' container reference.
 *
 * It is bidirectional and its opposite is '{@link ReadOnlyGrammarModel#getCustomRules() customRules}'.
 *
 * 
 * 
 *
 * @return the value of the 'model' container reference.
 * @see CustomRule#\setModel(eu.mihosoft.vmf.vmftext.grammar.GrammarModel)
 */
   public ReadOnlyGrammarModel getModel();
 
 
 /**
  * Returns a deep clone of this object.
  * @return a deep clone of this object
  */
  @Override
  public ReadOnlyCustomRule clone();

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy