blob: fef74bbd09df365be13ac892b80acc2f8877b1d3 [file] [log] [blame]
/**
* * Copyright (c) 2008 Daniel Varro
* * 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
* *
* * Contributors:
* * Daniel Varro - initial API and implementation
*
*
* $Id$
*/
package org.eclipse.viatra2.gtasm.typerules;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Binary Type Judgement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.viatra2.gtasm.typerules.BinaryTypeJudgement#getFirstOperand <em>First Operand</em>}</li>
* <li>{@link org.eclipse.viatra2.gtasm.typerules.BinaryTypeJudgement#getSecondOperand <em>Second Operand</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.viatra2.gtasm.typerules.TyperulesPackage#getBinaryTypeJudgement()
* @model
* @generated
*/
public interface BinaryTypeJudgement extends TypeJudgement {
/**
* Returns the value of the '<em><b>First Operand</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>First Operand</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>First Operand</em>' attribute.
* @see #setFirstOperand(String)
* @see org.eclipse.viatra2.gtasm.typerules.TyperulesPackage#getBinaryTypeJudgement_FirstOperand()
* @model
* @generated
*/
String getFirstOperand();
/**
* Sets the value of the '{@link org.eclipse.viatra2.gtasm.typerules.BinaryTypeJudgement#getFirstOperand <em>First Operand</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>First Operand</em>' attribute.
* @see #getFirstOperand()
* @generated
*/
void setFirstOperand(String value);
/**
* Returns the value of the '<em><b>Second Operand</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Second Operand</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Second Operand</em>' attribute.
* @see #setSecondOperand(String)
* @see org.eclipse.viatra2.gtasm.typerules.TyperulesPackage#getBinaryTypeJudgement_SecondOperand()
* @model
* @generated
*/
String getSecondOperand();
/**
* Sets the value of the '{@link org.eclipse.viatra2.gtasm.typerules.BinaryTypeJudgement#getSecondOperand <em>Second Operand</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Second Operand</em>' attribute.
* @see #getSecondOperand()
* @generated
*/
void setSecondOperand(String value);
} // BinaryTypeJudgement