echopoint.ui.asynch
Class AsynchContentPaneUI
java.lang.Object
nextapp.echoservlet.AbstractComponentPeer
nextapp.echoservlet.AbstractPaneUI
nextapp.echoservlet.ContentPaneUI
echopoint.ui.asynch.AsynchContentPaneUI
- All Implemented Interfaces:
- java.beans.PropertyChangeListener, java.io.Serializable, java.util.EventListener, ComponentPeer, PaneUI, Service
public class AsynchContentPaneUI
- extends ContentPaneUI
AsynchContentPaneUI
is the UI peer for AsynchContentPane
- See Also:
- Serialized Form
Method Summary |
void |
propertyChange(java.beans.PropertyChangeEvent e)
|
static void |
register()
Registers the component with its peer bindings |
void |
registered()
Called when the component is registered. |
void |
service(Connection conn)
Services an HTTP request. |
void |
unregistered()
Called when the component is unregistered. |
Methods inherited from class nextapp.echoservlet.AbstractComponentPeer |
addAncillaryService, generateId, getCalculatedBackground, getCalculatedFont, getCalculatedForeground, getChildCount, getChildren, getComponent, getFocusedElementId, getId, getInstancePeer, getParentComponentPeer, getPeer, redraw, registerAncillaryServices, removeAncillaryService, setComponent, setId, setInstancePeer, unregisterAncillaryServices |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface nextapp.echoservlet.PaneUI |
getId |
Methods inherited from interface nextapp.echoservlet.Service |
getId |
SERVICE_ASYNCH_EVENTS_SCRIPT
public static final Service SERVICE_ASYNCH_EVENTS_SCRIPT
- This services provides the Async Events JavaScript
AsynchContentPaneUI
public AsynchContentPaneUI()
propertyChange
public void propertyChange(java.beans.PropertyChangeEvent e)
- Specified by:
propertyChange
in interface java.beans.PropertyChangeListener
- Overrides:
propertyChange
in class ContentPaneUI
- See Also:
ContentPaneUI.propertyChange(java.beans.PropertyChangeEvent)
registered
public void registered()
- Description copied from class:
AbstractComponentPeer
- Called when the component is registered. This method should be overridden
if necessary.
- Specified by:
registered
in interface ComponentPeer
- Overrides:
registered
in class ContentPaneUI
- See Also:
ContentPaneUI.registered()
unregistered
public void unregistered()
- Description copied from class:
AbstractComponentPeer
- Called when the component is unregistered. This method should be
overridden if necessary.
- Specified by:
unregistered
in interface ComponentPeer
- Overrides:
unregistered
in class ContentPaneUI
- See Also:
ContentPaneUI.unregistered()
register
public static void register()
- Registers the component with its peer bindings
service
public void service(Connection conn)
- Description copied from interface:
Service
- Services an HTTP request. Information about the HTTP request as well
as methods for issuing a response are available from the provided
Connection object.
- Specified by:
service
in interface Service
- Overrides:
service
in class ContentPaneUI
- Parameters:
conn
- A Connection
object which wraps
HttpServletRequest
and
HttpServletResponse
objects and provides
access to the facilities of the Echo application container.- See Also:
Service.service(Connection)