Uses of Interface
es.uned.compiler.intermediate.OperandIF

Packages that use OperandIF
compiler.intermediate   
es.uned.compiler.intermediate   
 

Uses of OperandIF in compiler.intermediate
 

Classes in compiler.intermediate that implement OperandIF
 class Label
          Clase que representa un operando etiqueta del código intermedio
 class Temporal
          Clase que representa un temporal del código intermedio
 class Value
          Clase que representa un valor constante en el código intermedio
 class Variable
          Clase que representa una variable en el código intermedio
 

Uses of OperandIF in es.uned.compiler.intermediate
 

Methods in es.uned.compiler.intermediate that return OperandIF
 OperandIF CuadrupleIF.getFirstOperand()
          Returns the firstOperand.
 OperandIF Cuadruple.getFirstOperand()
          Returns the firstOperand.
 OperandIF CuadrupleIF.getResult()
          Returns the result.
 OperandIF Cuadruple.getResult()
          Returns the result.
 OperandIF CuadrupleIF.getSecondOperand()
          Returns the secondOperand.
 OperandIF Cuadruple.getSecondOperand()
          Returns the secondOperand.
 

Methods in es.uned.compiler.intermediate with parameters of type OperandIF
 void CuadrupleIF.setFirstOperand(OperandIF firstOperand)
          Sets The firstOperand.
 void Cuadruple.setFirstOperand(OperandIF firstOperand)
          Sets The firstOperand.
 void CuadrupleIF.setResult(OperandIF result)
          Sets The result.
 void Cuadruple.setResult(OperandIF result)
          Sets The result.
 void CuadrupleIF.setSecondOperand(OperandIF secondOperand)
          Sets The secondOperand.
 void Cuadruple.setSecondOperand(OperandIF secondOperand)
          Sets The secondOperand.
 

Constructors in es.uned.compiler.intermediate with parameters of type OperandIF
Cuadruple(java.lang.String operation, OperandIF result)
          Constructor for CuadrupleIF.
Cuadruple(java.lang.String operation, OperandIF result, OperandIF firstOperand)
          Constructor for CuadrupleIF.
Cuadruple(java.lang.String operation, OperandIF result, OperandIF firstOperand, OperandIF secondOperand)
          Constructor for CuadrupleIF.