jeters.core
Class UIRequest_Boolean

java.lang.Object
  extended by jeters.core.UIRequest
      extended by jeters.core.UIRequest_Boolean

public class UIRequest_Boolean
extends UIRequest

this subclass of UIRequest is used when a boolean value is desired as the request's result.


Nested Class Summary
 
Nested classes/interfaces inherited from class jeters.core.UIRequest
UIRequest.Type
 
Field Summary
 java.lang.Boolean startingValue
          the value that will initially be set and will be the result of the request unless the user changes it; can be null (no specified starting value).
 
Fields inherited from class jeters.core.UIRequest
help, label, name
 
Constructor Summary
UIRequest_Boolean(java.lang.String name, java.lang.String label, java.lang.String help)
          simple "this.xyz = xyz"-constructor, startingValue remains null.
UIRequest_Boolean(java.lang.String name, java.lang.String label, java.lang.String help, java.lang.Boolean startingValue)
          simple "this.xyz = xyz"-constructor.
 
Method Summary
 UIRequest.Type getType()
          returns the type of the request: Request_Boolean.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

startingValue

public java.lang.Boolean startingValue
the value that will initially be set and will be the result of the request unless the user changes it; can be null (no specified starting value).

Constructor Detail

UIRequest_Boolean

public UIRequest_Boolean(java.lang.String name,
                         java.lang.String label,
                         java.lang.String help,
                         java.lang.Boolean startingValue)
simple "this.xyz = xyz"-constructor.


UIRequest_Boolean

public UIRequest_Boolean(java.lang.String name,
                         java.lang.String label,
                         java.lang.String help)
simple "this.xyz = xyz"-constructor, startingValue remains null.

Method Detail

getType

public UIRequest.Type getType()
returns the type of the request: Request_Boolean.

Specified by:
getType in class UIRequest