org.eclipse.xtext.Assignment Maven / Gradle / Ivy
/**
*
*
*
* $Id: Assignment.java,v 1.16 2010/04/06 14:10:18 sefftinge Exp $
*/
package org.eclipse.xtext;
/**
*
* A representation of the model object 'Assignment'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.xtext.Assignment#getFeature Feature}
* - {@link org.eclipse.xtext.Assignment#getOperator Operator}
* - {@link org.eclipse.xtext.Assignment#getTerminal Terminal}
*
*
*
* @see org.eclipse.xtext.XtextPackage#getAssignment()
* @model
* @generated
*/
public interface Assignment extends AbstractElement {
/**
* Returns the value of the 'Feature' attribute.
*
*
* If the meaning of the 'Feature' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Feature' attribute.
* @see #setFeature(String)
* @see org.eclipse.xtext.XtextPackage#getAssignment_Feature()
* @model
* @generated
*/
String getFeature();
/**
* Sets the value of the '{@link org.eclipse.xtext.Assignment#getFeature Feature}' attribute.
*
*
* @param value the new value of the 'Feature' attribute.
* @see #getFeature()
* @generated
*/
void setFeature(String value);
/**
* Returns the value of the 'Operator' attribute.
*
*
* If the meaning of the 'Operator' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Operator' attribute.
* @see #setOperator(String)
* @see org.eclipse.xtext.XtextPackage#getAssignment_Operator()
* @model
* @generated
*/
String getOperator();
/**
* Sets the value of the '{@link org.eclipse.xtext.Assignment#getOperator Operator}' attribute.
*
*
* @param value the new value of the 'Operator' attribute.
* @see #getOperator()
* @generated
*/
void setOperator(String value);
/**
* Returns the value of the 'Terminal' containment reference.
*
*
* If the meaning of the 'Terminal' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Terminal' containment reference.
* @see #setTerminal(AbstractElement)
* @see org.eclipse.xtext.XtextPackage#getAssignment_Terminal()
* @model containment="true"
* @generated
*/
AbstractElement getTerminal();
/**
* Sets the value of the '{@link org.eclipse.xtext.Assignment#getTerminal Terminal}' containment reference.
*
*
* @param value the new value of the 'Terminal' containment reference.
* @see #getTerminal()
* @generated
*/
void setTerminal(AbstractElement value);
} // Assignment
© 2015 - 2025 Weber Informatics LLC | Privacy Policy