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

org.eclipse.xtext.xbase.XBinaryOperation Maven / Gradle / Ivy

/**
 * Copyright (c) 2011 itemis AG (http://www.itemis.eu) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 */
package org.eclipse.xtext.xbase;


/**
 * 
 * A representation of the model object 'XBinary Operation'.
 * 
 *
 * 
 * @since 2.7
 * @noextend This interface is not intended to be extended by clients.
 * @noimplement This interface is not intended to be implemented by clients.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.eclipse.xtext.xbase.XBinaryOperation#getLeftOperand Left Operand}
  • *
  • {@link org.eclipse.xtext.xbase.XBinaryOperation#getRightOperand Right Operand}
  • *
  • {@link org.eclipse.xtext.xbase.XBinaryOperation#isReassignFirstArgument Reassign First Argument}
  • *
* * @see org.eclipse.xtext.xbase.XbasePackage#getXBinaryOperation() * @model * @generated */ public interface XBinaryOperation extends XAbstractFeatureCall { /** * Returns the value of the 'Left Operand' containment reference. * *

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

* * @return the value of the 'Left Operand' containment reference. * @see #setLeftOperand(XExpression) * @see org.eclipse.xtext.xbase.XbasePackage#getXBinaryOperation_LeftOperand() * @model containment="true" * @generated */ XExpression getLeftOperand(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XBinaryOperation#getLeftOperand Left Operand}' containment reference. * * * @param value the new value of the 'Left Operand' containment reference. * @see #getLeftOperand() * @generated */ void setLeftOperand(XExpression value); /** * Returns the value of the 'Right Operand' containment reference. * *

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

* * @return the value of the 'Right Operand' containment reference. * @see #setRightOperand(XExpression) * @see org.eclipse.xtext.xbase.XbasePackage#getXBinaryOperation_RightOperand() * @model containment="true" * @generated */ XExpression getRightOperand(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XBinaryOperation#getRightOperand Right Operand}' containment reference. * * * @param value the new value of the 'Right Operand' containment reference. * @see #getRightOperand() * @generated */ void setRightOperand(XExpression value); /** * Returns the value of the 'Reassign First Argument' attribute. * *

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

* * @return the value of the 'Reassign First Argument' attribute. * @see #setReassignFirstArgument(boolean) * @see org.eclipse.xtext.xbase.XbasePackage#getXBinaryOperation_ReassignFirstArgument() * @model * @generated */ boolean isReassignFirstArgument(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XBinaryOperation#isReassignFirstArgument Reassign First Argument}' attribute. * * * @param value the new value of the 'Reassign First Argument' attribute. * @see #isReassignFirstArgument() * @generated */ void setReassignFirstArgument(boolean value); } // XBinaryOperation




© 2015 - 2025 Weber Informatics LLC | Privacy Policy