FileDocCategorySizeDatePackage
BooleanValue.javaAPI DocExample533Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql.value

BooleanValue

public class BooleanValue extends com.ora.jsp.sql.Value
This class represents a boolean value used by the SQL tags.
author
Hans Bergsten, Gefion software
version
1.0

Fields Summary
private boolean
value
Constructors Summary
public BooleanValue(boolean value)

        this.value = value;
    
Methods Summary
public booleangetBoolean()

        return value;
    
public java.lang.StringgetString()

        return String.valueOf(value);