File
Doc
Category
Size
Date
Package
JSONBoolean.java
API Doc
Example
999
Wed Jul 26 13:30:26 BST 2006
com.oreilly.ajax.client
JSONBoolean
java.lang.Object
JSONValue
public class JSONBoolean extends JSONValue
Represents a JSON boolean value.
Fields Summary
private boolean
value
Constructors Summary
public JSONBoolean
(
boolean
value)
this.value = value;
Methods Summary
public
boolean
booleanValue
()
return value;
public
com.oreilly.ajax.client.JSONBoolean
isBoolean
()
return this;
public
java.lang.String
toString
()
return Boolean.toString(value);
Java Code Source