jreceiver.common.rec.security
Class HandlerRec
java.lang.Object
|
+--jreceiver.common.rec.BaseRec
|
+--jreceiver.common.rec.security.HandlerRec
- All Implemented Interfaces:
- Handler, Hashable, Rec, Selectable
- public class HandlerRec
- extends BaseRec
- implements Handler, Selectable
Bean to represent a single handler folder record
- Version:
- $Revision: 1.2 $ $Date: 2002/12/29 00:44:09 $
- Author:
- Reed Esau
Field Summary |
protected java.lang.String |
handler_name
|
protected boolean |
is_checked
is the item selected in the form? |
Constructor Summary |
HandlerRec(java.util.Hashtable hash)
ctor - construct from a hashtable, usually retrieved via XML-RPC |
HandlerRec(java.lang.String handler_name)
ctor |
Method Summary |
boolean |
getChecked()
get the current select state |
java.lang.String |
getId()
|
java.lang.Object |
getKey()
return the Integer or Key object that serves as this Rec's key. |
void |
setChecked(boolean is_checked)
set the select state |
void |
setId(java.lang.String handler_name)
|
void |
setKey(java.lang.Object new_key)
assign the Number-derived, Key-derived or String that serves as this Rec's key. |
java.util.Hashtable |
toHash()
Store the object as a hash suitable for
transport over an XML-RPC connection or similar. |
java.lang.String |
toString()
Returns a string representation of the object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
handler_name
protected java.lang.String handler_name
is_checked
protected boolean is_checked
- is the item selected in the form?
HandlerRec
public HandlerRec(java.lang.String handler_name)
- ctor
HandlerRec
public HandlerRec(java.util.Hashtable hash)
- ctor - construct from a hashtable, usually retrieved via XML-RPC
getKey
public java.lang.Object getKey()
- return the Integer or Key object that serves as this Rec's key.
- Specified by:
getKey
in interface Rec
setKey
public void setKey(java.lang.Object new_key)
- assign the Number-derived, Key-derived or String that serves as this Rec's key.
- Specified by:
setKey
in interface Rec
getId
public java.lang.String getId()
- Specified by:
getId
in interface Handler
setId
public void setId(java.lang.String handler_name)
- Specified by:
setId
in interface Handler
getChecked
public boolean getChecked()
- Description copied from interface:
Selectable
- get the current select state
- Specified by:
getChecked
in interface Selectable
- Following copied from interface:
jreceiver.common.rec.Selectable
- Returns:
boolean
true if the item has been selected by the user; false otherwise
setChecked
public void setChecked(boolean is_checked)
- Description copied from interface:
Selectable
- set the select state
- Specified by:
setChecked
in interface Selectable
- Following copied from interface:
jreceiver.common.rec.Selectable
- Parameters:
is_checked
-
toString
public java.lang.String toString()
- Returns a string representation of the object.
- Specified by:
toString
in interface Hashable
- Overrides:
toString
in class java.lang.Object
toHash
public java.util.Hashtable toHash()
- Store the object as a hash suitable for
transport over an XML-RPC connection or similar.
Use HandlerRec(Hashtable)
to transform the data
back into an object of this type.
- Specified by:
toHash
in interface Hashable
- Returns:
-
Copyright © 2001-2002 Reed Esau, All Rights Reserved.