echopoint.ui.asynch
Class AsynchContentPaneUI

java.lang.Object
  extended by nextapp.echoservlet.AbstractComponentPeer
      extended by nextapp.echoservlet.AbstractPaneUI
          extended by nextapp.echoservlet.ContentPaneUI
              extended by 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

Field Summary
static Service SERVICE_ASYNCH_EVENTS_SCRIPT
          This services provides the Async Events JavaScript
 
Fields inherited from class nextapp.echoservlet.ContentPaneUI
SERVICE_CONTENT_PANE_SCRIPT, SERVICE_DETECT_SCRIPT, SERVICE_KEY_ACTION_COMMAND_SCRIPT, SERVICE_POPS_SCRIPT, SERVICE_TIMER_SCRIPT, SERVICE_X_SCRIPT
 
Fields inherited from interface nextapp.echoservlet.PaneUI
SCROLLING_ALWAYS, SCROLLING_AUTO, SCROLLING_NEVER
 
Fields inherited from interface nextapp.echoservlet.ComponentPeer
IGNORE_PROPERTY_CHANGE
 
Constructor Summary
AsynchContentPaneUI()
           
 
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.ContentPaneUI
getPleaseWaitRenderer, getScriptSetAction, getScriptSetAction, getScriptSetParameter, getScrolling, getUri, isRedrawEnabled, processInitializeScripts, setRedrawEnabled
 
Methods inherited from class nextapp.echoservlet.AbstractPaneUI
render
 
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
 

Field Detail

SERVICE_ASYNCH_EVENTS_SCRIPT

public static final Service SERVICE_ASYNCH_EVENTS_SCRIPT
This services provides the Async Events JavaScript

Constructor Detail

AsynchContentPaneUI

public AsynchContentPaneUI()
Method Detail

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)