| 
JSR-62 (Final) | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
An interface that provides methods allowing an Xlet to discover information about its environment. An XletContext is passed to an Xlet when the Xlet is initialized. It provides an Xlet with a mechanism to retrieve properties, as well as a way to signal internal state changes.
Xlet| Field Summary | |
static String | 
ARGS
The property key used to obtain initialization arguments for the Xlet.  | 
| Method Summary | |
 Container | 
getContainer()
Get the parent container for an Xlet to put its AWT components in.  | 
 Object | 
getXletProperty(String key)
Provides an Xlet with a mechanism to retrieve named properties from the XletContext.  | 
 void | 
notifyDestroyed()
Used by an application to notify its manager that it has entered into the Destroyed state.  | 
 void | 
notifyPaused()
Notifies the manager that the Xlet does not want to be active and has entered the Paused state.  | 
 void | 
resumeRequest()
Provides the Xlet with a mechanism to indicate that it is interested in entering the Active state.  | 
| Field Detail | 
public static final String ARGS
XletContext.getXletProperty(XletContext.ARGS) will
 return the arguments as an array of Strings.  If there are
 no arguments, then an array of length 0 will be returned.
getXletProperty(java.lang.String), 
Constant Field Values| Method Detail | 
public void notifyDestroyed()
destroy method, and all resources
 held by the Xlet will be considered eligible for reclamation.  
 Before calling this method,
 the Xlet must have performed the same operations
 (clean up, releasing of resources etc.) it would have if the
 Xlet.destroyXlet() had been called.
public void notifyPaused()
 If an Xlet calls notifyPaused(), in the
 future it may receive an Xlet.startXlet() call to request
 it to become active, or an Xlet.destroyXlet() call to request
 it to destroy itself.
public Object getXletProperty(String key)
key - The name of the property.
null is returned if no value is available for key.
NullPointerException - If key is null.
IllegalArgumentException - If key is an empty string.public void resumeRequest()
Xlet.startXlet()
 via a different thread than the one used to call
 resumeRequest().
Xlet.startXlet()
public Container getContainer()
                       throws UnavailableContainerException
c of
 java.awt.Container that is initially invisible, with
 an arbitrary size and position.  Calling
 c.setVisible(true) will make the container visible.
 If this method is called multiple times on the same XletContext instance, the same container will be returned each time. Note that the platform need not support more than a single displayable Xlet at a time, however, at least the first call to this method platform-wide is guaranteed to succeed. The behavior for subsequent calls to this method is implementation-dependent.
The methods for setting the size and position of the xlet's parent container shall attempt to change the shape of the container, but they may fail silently or make platform specific approximations. To discover if a request to change the size or position has succeeded, the Xlet should query the container for the result.
 The object returned by this method will either
 be an instance of Frame or a Container
 within a Frame.  In the latter case, an Xlet
 shall be able to traverse the containment hierarchy to find
 a parent container that is an instance of Frame or
 a Frame subclass.
UnavailableContainerException - If policy or screen real
 estate does not permit a Container to be granted to the Xlet at
 this time.
  | 
JSR-62 (Final) | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||