uchicago.src.sim.parameter.rpl
Class RPLBooleanValue

java.lang.Object
  extended by uchicago.src.sim.parameter.rpl.RPLValue
      extended by uchicago.src.sim.parameter.rpl.RPLBooleanValue
All Implemented Interfaces:
RPLObject

public class RPLBooleanValue
extends RPLValue

Intermediate representation of a boolean value used by the compiler.

Version:
$Revision: 1.2 $ $Date: 2003/04/10 15:57:47 $

Constructor Summary
RPLBooleanValue(boolean value)
          Creates a RPLBooleanValue with the specified value.
 
Method Summary
 java.lang.Class getType()
          Returns boolean.class.
 java.lang.Object getValue()
          Gets the value of the RPLBooleanValue as a Boolean.
 
Methods inherited from class uchicago.src.sim.parameter.rpl.RPLValue
compile
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RPLBooleanValue

public RPLBooleanValue(boolean value)
Creates a RPLBooleanValue with the specified value.

Parameters:
value - the value (true or false).
Method Detail

getValue

public java.lang.Object getValue()
Gets the value of the RPLBooleanValue as a Boolean.

Returns:

getType

public java.lang.Class getType()
Returns boolean.class.

Returns: