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

org.eclipse.xtext.AbstractRule Maven / Gradle / Ivy

/**
 * 
 * 
 *
 * $Id: AbstractRule.java,v 1.18 2010/04/06 14:10:16 sefftinge Exp $
 */
package org.eclipse.xtext;

import org.eclipse.emf.ecore.EObject;

/**
 * 
 * A representation of the model object 'Abstract Rule'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.xtext.AbstractRule#getName Name}
  • *
  • {@link org.eclipse.xtext.AbstractRule#getType Type}
  • *
  • {@link org.eclipse.xtext.AbstractRule#getAlternatives Alternatives}
  • *
*

* * @see org.eclipse.xtext.XtextPackage#getAbstractRule() * @model * @generated */ public interface AbstractRule extends EObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.xtext.XtextPackage#getAbstractRule_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.xtext.AbstractRule#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Type' containment reference. * *

* If the meaning of the 'Type' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Type' containment reference. * @see #setType(TypeRef) * @see org.eclipse.xtext.XtextPackage#getAbstractRule_Type() * @model containment="true" * @generated */ TypeRef getType(); /** * Sets the value of the '{@link org.eclipse.xtext.AbstractRule#getType Type}' containment reference. * * * @param value the new value of the 'Type' containment reference. * @see #getType() * @generated */ void setType(TypeRef value); /** * Returns the value of the 'Alternatives' containment reference. * *

* If the meaning of the 'Alternatives' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Alternatives' containment reference. * @see #setAlternatives(AbstractElement) * @see org.eclipse.xtext.XtextPackage#getAbstractRule_Alternatives() * @model containment="true" * @generated */ AbstractElement getAlternatives(); /** * Sets the value of the '{@link org.eclipse.xtext.AbstractRule#getAlternatives Alternatives}' containment reference. * * * @param value the new value of the 'Alternatives' containment reference. * @see #getAlternatives() * @generated */ void setAlternatives(AbstractElement value); } // AbstractRule




© 2015 - 2025 Weber Informatics LLC | Privacy Policy