|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of ClientAgent in creamtec.webcream |
|---|
| Subclasses of ClientAgent in creamtec.webcream | |
|---|---|
static class |
ServletHelper.InProcessClientAgent
Declare this class to resolve classpath to the application classes. |
| Methods in creamtec.webcream that return ClientAgent | |
|---|---|
ClientAgent |
ServletHelper.createClientAgent(java.lang.String appName)
Creates a new client agent. |
| Uses of ClientAgent in creamtec.webcream.core |
|---|
| Methods in creamtec.webcream.core that return ClientAgent | |
|---|---|
ClientAgent |
WebCreamThread.getClientAgent()
Returns the client agent that owns this thread |
ClientAgent |
WebCreamThreadGroup.getClientAgent()
Returns the client agent associated with this thread group |
static ClientAgent |
ClientAgent.getCurrentInstance()
Returns the instance of ClientAgent, associated with the calling thread May not work correctly in a multi threaded application |
static ClientAgent |
ClientAgentManager.getMyAgent(java.lang.Object obj)
Returns the agent associated with the given object |
| Methods in creamtec.webcream.core with parameters of type ClientAgent | |
|---|---|
void |
AgentRequestFilter.postEmulateAction(ClientAgent agent,
ActionData data)
Called after the action emulation is complete. |
void |
WebCreamAgentRequestFilter.postEmulateAction(ClientAgent agent,
ActionData data)
|
void |
AgentRequestFilter.postProcessRequest(ClientAgent agent,
HttpResponseData responseData)
Called when a request is processed and about to be returned to the router servlet. |
void |
WebCreamAgentRequestFilter.postProcessRequest(ClientAgent agent,
HttpResponseData responseData)
|
java.lang.String |
AgentRequestFilter.postRenderWindow(ClientAgent agent,
java.awt.Window window,
java.lang.String htmlCode)
Called after the given window is rendered as HTML page |
java.lang.String |
WebCreamAgentRequestFilter.postRenderWindow(ClientAgent agent,
java.awt.Window window,
java.lang.String htmlCode)
|
boolean |
AgentRequestFilter.preEmulateAction(ClientAgent agent,
ActionData data)
Called after the controls have been updated with the data but before the action is emulated. |
boolean |
WebCreamAgentRequestFilter.preEmulateAction(ClientAgent agent,
ActionData data)
|
HttpResponseData |
AgentRequestFilter.preProcessRequest(ClientAgent agent)
Called when a request is received and the agent is initialized. |
HttpResponseData |
WebCreamAgentRequestFilter.preProcessRequest(ClientAgent agent)
|
void |
AgentRequestFilter.preRenderWindow(ClientAgent agent,
java.awt.Window window)
Called before the given window is rendered as HTML page |
void |
WebCreamAgentRequestFilter.preRenderWindow(ClientAgent agent,
java.awt.Window window)
|
void |
WebCreamThread.runMethod(ClientAgent clientAgent,
java.lang.Object object,
java.lang.String methodName)
Runs the object's method with a given name on this thread. |
void |
WebCreamThreadGroup.setClientAgent(ClientAgent agent)
Sets the client agent associated with this thread group |
static void |
ClientAgentManager.setMyAgent(java.lang.Object obj,
ClientAgent agent)
Establishes the association between an object and a client agent |
| Constructors in creamtec.webcream.core with parameters of type ClientAgent | |
|---|---|
WebCreamThreadGroup(ClientAgent agent)
Creates a thread group for the given client agent |
|
| Uses of ClientAgent in creamtec.webcream.examples |
|---|
| Methods in creamtec.webcream.examples with parameters of type ClientAgent | |
|---|---|
void |
AgentRequestFilterExample.postEmulateAction(ClientAgent agent,
ActionData data)
Called after the action emulation is complete. |
void |
AgentRequestFilterExample.postProcessRequest(ClientAgent agent,
HttpResponseData responseData)
Overridden to modify the generated HTML page by adding the user IP address. |
java.lang.String |
AgentRequestFilterExample.postRenderWindow(ClientAgent agent,
java.awt.Window window,
java.lang.String htmlCode)
Called after the given window is rendered as HTML page |
boolean |
AgentRequestFilterExample.preEmulateAction(ClientAgent agent,
ActionData data)
Called after the controls have been updated with the data but before the action is emulated. |
HttpResponseData |
AgentRequestFilterExample.preProcessRequest(ClientAgent agent)
Overridden to intercept "resize" action. |
void |
AgentRequestFilterExample.preRenderWindow(ClientAgent agent,
java.awt.Window window)
Called before the given window is rendered as HTML page |
| Uses of ClientAgent in creamtec.webcream.gui |
|---|
| Methods in creamtec.webcream.gui that return ClientAgent | |
|---|---|
ClientAgent |
WebCreamEventQueue.getClientAgent()
|
| Methods in creamtec.webcream.gui with parameters of type ClientAgent | |
|---|---|
void |
WindowUpdater.initCustomUpdatersAndEmulators(ClientAgent agent)
Loads custom updaters from the application properties file. |
static boolean |
WebCreamUIManager.shouldRenderEnabled(ClientAgent agent,
java.awt.Component comp)
Convenience method to determine if a component should be rendered as enabled or disabled Takes into account app properties and the component state |
static boolean |
WebCreamUIManager.shouldRenderStandardFileOpenDialog(ClientAgent agent,
java.awt.Container cont)
Returns true if the given window should be rendered as a stanard file open dialog with the view of the client machine for file upload |
| Constructors in creamtec.webcream.gui with parameters of type ClientAgent | |
|---|---|
WebCreamAppletFrame(ClientAgent agent,
java.applet.Applet applet)
|
|
WebCreamEventQueue(ClientAgent agent)
|
|
WebCreamUIManager(ClientAgent agent)
Instantiates the manager for the given client agent |
|
WindowUpdater(ClientAgent agent)
Creates window updater for the given client agent |
|
| Uses of ClientAgent in creamtec.webcream.rendering |
|---|
| Methods in creamtec.webcream.rendering with parameters of type ClientAgent | |
|---|---|
Document |
DocumentRenderer.renderDocument(ClientAgent agent,
java.awt.Window window)
Top level method used to get a document representing a rendering of the window of the agent |
| Uses of ClientAgent in creamtec.webcream.rendering.html |
|---|
| Methods in creamtec.webcream.rendering.html that return ClientAgent | |
|---|---|
ClientAgent |
HTMLPage.getClientAgent()
Returns the client agent, associated with this page. |
| Methods in creamtec.webcream.rendering.html with parameters of type ClientAgent | |
|---|---|
Document |
HTMLPageRenderer.renderDocument(ClientAgent agent,
java.awt.Window window)
Overrides AbstractDocumentRenderer implementation to render the given window as HTML page. |
static java.lang.String |
StandardPagesRenderer.renderErrorPage(ClientAgent agent,
java.lang.Throwable x)
Renders the error page displaying the exception. |
static java.lang.String |
StandardPagesRenderer.renderExitPage(ClientAgent agent)
Renders exit page, displayed when the user closes the application of the application calls System.exit() |
void |
HTMLPage.setClientAgent(ClientAgent agent)
Used by WebCream to associate an agent with the page. |
| Constructors in creamtec.webcream.rendering.html with parameters of type ClientAgent | |
|---|---|
HTMLPage(ClientAgent agent)
Creates an empty page with default parameters and associates it with the given client agent |
|
HTMLPage(ClientAgent agent,
int bufferSize)
Creates an empty page with the given buffer size and associates it with the client agent |
|
| Uses of ClientAgent in creamtec.webcream.servlet |
|---|
| Methods in creamtec.webcream.servlet that return ClientAgent | |
|---|---|
ClientAgent |
WebCreamServlet.createClientAgent(java.lang.String appName)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||