public interface PropertySupport
sessionState
property. The value of this
property is the GUI state that should be preserved across
sessions for the specified component. The type of sessionState
values just one those supported by
XMLEncoder
and
XMLDecoder
, for example beans
(null constructor, read/write properties), primitives, and
Collections.Modifier and Type | Method and Description |
---|---|
Object |
getSessionState(Component c)
Return the value of the
sessionState property, typically
a Java bean or a Collection the defines the Component state
that should be preserved across Application sessions. |
void |
setSessionState(Component c,
Object state)
Restore Component
c's sessionState from the specified
object. |
Object getSessionState(Component c)
sessionState
property, typically
a Java bean or a Collection the defines the Component
state
that should be preserved across Application sessions. This
value will be stored with XMLEncoder
,
loaded with XMLDecoder
, and
passed to setSessionState
to restore the Component's
state.c
- the Component.sessionState
object for Component c
.setSessionState(java.awt.Component, java.lang.Object)
void setSessionState(Component c, Object state)
c's
sessionState
from the specified
object.c
- the Component.state
- the value of the sessionState
property.getSessionState(java.awt.Component)
Copyright © 2009–2016. All rights reserved.