|
WebObjects 5.2.3 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WOContext | |
com.webobjects.appserver | Provides the WebObjects application server, session management classes, component classes, and classes to manage the request-response loop. |
com.webobjects.directtoweb | Provides the framework for rapid development of HTML-based WebObjects applications. |
com.webobjects.eodistribution | Provides the communication mechanism between the client and server components of Java Client applications. |
com.webobjects.eogeneration.rules | Provides infrastructure for dynamically generating user interfaces in Java Client applications that use the rule system. |
com.webobjects.jspservlet | Provides the infrastructure that supports the use of WebObjects API in JavaServlet Pages and the deployment of WebObjects components as Servlets. |
com.webobjects.smil | Provides the infrastructure that allows for the development of SMIL (Synchronized Multimedia Integration Language) applications in WebObjects. |
com.webobjects.webservices.generation | |
com.webobjects.woextensions | The WebObjects Extensions are non-synchronizing reusable components defined in the WebObjects Extensions Framework, which is included in every WebObjects Application project. |
Uses of WOContext in com.webobjects.appserver |
Methods in com.webobjects.appserver that return WOContext | |
static WOContext |
WOWebServiceUtilities.currentWOContext()
|
WOContext |
WOSession.context()
Returns the WOContext object for the current transaction. |
static WOContext |
WOContext.contextWithRequest(WORequest aRequest)
Deprecated. use WOContext(WORequest aRequest) instead |
WOContext |
WOComponent.context()
Returns the WOContext object for the current transaction (request-response loop) |
WOContext |
WOApplication.createContextForRequest(WORequest aRequest)
Creates a new context object for a given request. |
WOContext |
WOAction.context()
Returns the current WOContext object. |
Methods in com.webobjects.appserver with parameters of type WOContext | |
String |
WOStatisticsStore.descriptionForResponse(WOResponse aResponse,
WOContext aContext)
Records information about the current response by invoking descriptionForResponse on the current response page and
returning the result. |
String |
WOStatisticsStore.formatDescription(String statistics,
WOResponse aResponse,
WOContext aContext)
If log file recording is enabled, this method formats the string statistics using the Common Log File Format (CLFF). |
void |
WOStatisticsStore.recordStatisticsForResponse(WOResponse aResponse,
WOContext aContext)
Records statistics for the current cycle of the request-response loop. |
void |
WOSessionStore.checkInSessionForContext(WOContext context)
Checks in the session in context so that pending (and future) requests for
the same session may proceed. |
abstract void |
WOSessionStore.saveSessionForContext(WOContext context)
Saves the current WOSession in context into storage. |
void |
WOSession.appendToResponse(WOResponse aResponse,
WOContext aContext)
Invoked on the WOSession object during the final phase of the request-response loop. |
WOActionResults |
WOSession.invokeAction(WORequest aRequest,
WOContext aContext)
Invoked on the WOSession object during the middle phase of the request-response loop. |
void |
WOSession.takeValuesFromRequest(WORequest aRequest,
WOContext aContext)
Invoked on the WOSession object during the first phase of the the request-response loop. |
void |
WORedirect.appendToResponse(WOResponse aResponse,
WOContext aContext)
Adds the redirect to the header of the WOResponse. |
void |
WOElement.appendToResponse(WOResponse aResponse,
WOContext aContext)
This method is invoked in WOElement objects in the request-handling phase when objects involved in the current transaction append their HTML content to the transaction's WOResponse object. |
WOActionResults |
WOElement.invokeAction(WORequest aRequest,
WOContext aContext)
This method is invoked in WOElements in the phase of request handling that results in the triggering of an action method and the return of a response WOComponent. |
void |
WOElement.takeValuesFromRequest(WORequest aRequest,
WOContext aContext)
This method is invoked on WOElement objects during the phase of request handling that extracts user-entered data. |
void |
WOComponent.appendToResponse(WOResponse aResponse,
WOContext aContext)
Forces the component to generate its interface and output it in the response's content. |
String |
WOComponent.descriptionForResponse(WOResponse aResponse,
WOContext aContext)
Records information about the component, if it is the top-level component. |
void |
WOComponent.ensureAwakeInContext(WOContext aContext)
Ensures that the receiver is awake in the specified context. |
WOActionResults |
WOComponent.invokeAction(WORequest aRequest,
WOContext aContext)
Tells the component to execute any action specified in the request. |
void |
WOComponent.takeValuesFromRequest(WORequest aRequest,
WOContext aContext)
Tells the component to synchronize its variables with values from the request. |
void |
WOApplication.appendToResponse(WOResponse aResponse,
WOContext aContext)
The WOApplication object invokes this method on itself to initiate the final phase of request handling. |
WOResponse |
WOApplication.createResponseInContext(WOContext aContext)
Convenience method that instantiates and returns a new, empty WOResponse object. |
WOResponse |
WOApplication.handleException(Exception anException,
WOContext aContext)
Invoked when an unexpected exception is thrown in the request-response loop. |
WOResponse |
WOApplication.handlePageRestorationErrorInContext(WOContext aContext)
Invoked when a page (WOComponent) instance cannot be restored, which typically happens when a user backtracks too far. |
WOResponse |
WOApplication.handleSessionCreationErrorInContext(WOContext aContext)
Invoked by the component request handler when a session (WOSession) instance cannot be created. |
WOResponse |
WOApplication.handleSessionRestorationErrorInContext(WOContext aContext)
Invoked when a session (WOSession) instance cannot be restored, which typically happens when the session times out. |
WOActionResults |
WOApplication.invokeAction(WORequest aRequest,
WOContext aContext)
The WOApplication object invokes this method on itself to initiate the middle phase of request handling. |
WOComponent |
WOApplication.pageWithName(String aName,
WOContext aContext)
Returns a new page instance (a WOComponent object) identified by aName . |
WOSession |
WOApplication.restoreSessionWithID(String aSessionID,
WOContext aContext)
Restores the WOSession object representing a session. |
void |
WOApplication.saveSessionForContext(WOContext aContext)
Called at the end of the request handling loop when the current session object needs to be saved. |
void |
WOApplication.takeValuesFromRequest(WORequest aRequest,
WOContext aContext)
WOComponentRequestHandler invokes this method on
WOApplication to initiate the first phase of request handling. |
void |
WOAction.initializeRequestSessionIDInContext(WOContext aContext)
|
Constructors in com.webobjects.appserver with parameters of type WOContext | |
WORedirect(WOContext aContext)
Creates a new WORedirect. |
|
WOComponent(WOContext aContext)
WebObjects Builder archive files exist in the component directory, and this constructor initializes component variables from this archive. |
Uses of WOContext in com.webobjects.directtoweb |
Methods in com.webobjects.directtoweb with parameters of type WOContext | |
WOAssociation |
QueryOperatorComponent.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
QueryComponent.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
EditRelationship.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the associations that are pertinent to editing relationships. |
WOAssociation |
EditComponent.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
static String |
D2WUtils.homeHrefInContext(WOContext context)
|
WOAssociation |
D2WTabInspectPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
|
WOAssociation |
D2WQueryToOneField.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the binding value . |
WOAssociation |
D2WQueryToManyField.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WQueryRelationship.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WQueryRangeComponent.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WQueryPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replace the binding queryAction . |
WOAssociation |
D2WQueryAnyField.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WQueryAllEntitiesPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replace the bindings queryAction and
showRegularQueryAction . |
String |
D2WPage.descriptionForResponse(WOResponse r,
WOContext c)
This method is intentionally undocumented. |
WOAssociation |
D2WPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WMasterDetailPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
|
void |
D2WListPage.appendToResponse(WOResponse r,
WOContext c)
Fetches on the display group if the editing context did save changes recently. |
WOAssociation |
D2WListPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the following bindings: isListEmpty ,
d2wContext.propertyKey ,
d2wContext.justification ,
d2wContext.displayNameForProperty , object ,
displayedObjects . |
WOAssociation |
D2WKeyPathContainer.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WInspectPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WErrorPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
|
WOAssociation |
D2WEditToOneRelationship.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the binding toOneDescription . |
WOAssociation |
D2WEditToOneFault.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the bindings toOneDescription and
editRelationship . |
WOAssociation |
D2WEditToManyRelationship.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the binding toManyDescription . |
WOAssociation |
D2WEditToManyFault.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the associations that are pertinent to editing to-many relationships. |
WOAssociation |
D2WEditRelationshipPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
|
WOAssociation |
D2WEditNumber.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the binding isDecimalNumber . |
WOAssociation |
D2WDisplayToOneFault.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
|
WOAssociation |
D2WDisplayToOne.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WDisplayToManyTable.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WDisplayToManyFault.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WDisplayToManyBrowser.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WDisplayToMany2.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WDisplayToMany.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
This method is intentionally undocumented. |
WOAssociation |
D2WDisplayHyperlink.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
Replaces the binding hyperlinkAction . |
WOAssociation |
D2WConfirmPage.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
|
WOAssociation |
D2WComponent.replacementAssociationForAssociation(WOAssociation oldAssociation,
String oldBinding,
com.webobjects.directtoweb.generation.DTWTemplate aTemplate,
WOContext aContext)
|
ErrorPageInterface |
D2W.errorPage(WOContext context)
Returns an error page as a WOComponent implementing the ErrorPageInterface. |
String |
D2W.homeHrefInContext(WOContext context)
Returns the URL of the login page for the session contained in the specified context. |
protected WOComponent |
D2W.pageForTaskAndEntityNamed(String task,
String entityName,
WOContext context)
Returns a Direct to Web page as a WOComponent for the task identified by task and
the entity identified by entityName . |
void |
D2W.requestWasHandled(WOContext c)
This method is intentionally undocumented. |
WOComponent |
D2W.webAssistantInContext(WOContext context)
Is invoked when the user clicks Customize in the menu bar. |
Constructors in com.webobjects.directtoweb with parameters of type WOContext | |
WOLTabInspectPage(WOContext aContext)
|
|
WOLQueryPage(WOContext aContext)
|
|
WOLQueryAllPage(WOContext aContext)
|
|
WOLPlainListPage(WOContext aContext)
|
|
WOLMasterDetailPage(WOContext aContext)
|
|
WOLListPage(WOContext aContext)
|
|
WOLInspectPage(WOContext aContext)
|
|
WOLHeader(WOContext aContext)
|
|
WOLErrorPage(WOContext aContext)
|
|
WOLEditRelationshipPage(WOContext aContext)
|
|
WOLConfirmPage(WOContext aContext)
|
|
WOLCompactInspectComponent(WOContext aContext)
|
|
QueryOperatorComponent(WOContext aContext)
This method is intentionally undocumented. |
|
QueryComponent(WOContext aContext)
This method is intentionally undocumented. |
|
NEUTabInspectPage(WOContext aContext)
|
|
NEUQueryPage(WOContext aContext)
|
|
NEUQueryAllPage(WOContext aContext)
|
|
NEUPlainListPage(WOContext aContext)
|
|
NEUMasterDetailPage(WOContext aContext)
|
|
NEUListPage(WOContext aContext)
|
|
NEUInspectPage(WOContext aContext)
|
|
NEUHeader(WOContext aContext)
|
|
NEUErrorPage(WOContext aContext)
|
|
NEUEditRelationshipPage(WOContext aContext)
|
|
NEUConfirmPage(WOContext aContext)
|
|
NEUCompactInspectComponent(WOContext aContext)
|
|
EditRelationship(WOContext aContext)
Creates an instance of EditRelationship with the specified context. |
|
EditComponent(WOContext aContext)
This method is intentionally undocumented. |
|
DefaultHeader(WOContext aContext)
Constructs a DefaultHeader with the specified context. |
|
D2WWebAssistantPage(WOContext aContext)
|
|
D2WWebAssistantFrame(WOContext aContext)
|
|
D2WTabInspectPage(WOContext aContext)
Constructs a D2WTabInspectPage with the specified context. |
|
D2WSwitchComponent(WOContext aContext)
Creates an instance of D2WSwitchComponent with the specified context. |
|
D2WStatelessComponent(WOContext aContext)
Creates an instance of D2WStatelessComponent with the specified context. |
|
D2WStandAloneWebAssistantFrame(WOContext aContext)
|
|
D2WSelect(WOContext aContext)
Constructs a D2WSelect with the specified context. |
|
D2WRemoteControl(WOContext aContext)
|
|
D2WQueryUnavailable(WOContext aContext)
Creates an instance of D2WQueryUnavailable with the specified context. |
|
D2WQueryToOneRelationship(WOContext aContext)
Creates an instance of D2WQueryToOneRelationship with the specified context. |
|
D2WQueryToOneField(WOContext aContext)
Creates an instance of D2WQueryToOneField with the specified context. |
|
D2WQueryToManyRelationship(WOContext aContext)
Creates an instance of D2WQueryToManyRelationship with the specified context. |
|
D2WQueryToManyField(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryStringOperator(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryStringComponent(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryRelationship(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryRangeComponent(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryPage(WOContext aContext)
Creates an instance of D2WQueryPage with the specified context. |
|
D2WQueryNumberRange(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryNumberOperator(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryDateRange(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryDateOperator(WOContext aContext)
This method is intentionally undocumented. |
|
D2WQueryBoolean(WOContext aContext)
Creates a new D2WQueryBoolean with the specified context. |
|
D2WQueryAnyField(WOContext aContext)
Creates a new D2WQueryAnyField with the specified aContext. |
|
D2WQueryAllEntitiesPage(WOContext aContext)
Creates an instance of D2WQueryAllEntitiesPage with the specified context. |
|
D2WQuery(WOContext aContext)
Constructs a D2WQuery with the specified context. |
|
D2WPlainListPage(WOContext aContext)
Creates an instance of D2WPlainListPage with the specified context. |
|
D2WPage(WOContext aContext)
Constructs a new D2WPage with the specified context. |
|
D2WMasterDetailPage(WOContext aContext)
Constructs a D2WMasterDetailPage with the specified context. |
|
D2WListPage(WOContext aContext)
Creates an instance of D2WListPage with the specified context. |
|
D2WList(WOContext aContext)
Constructs a D2WList with the specified context. |
|
D2WKeyPathContainer(WOContext aContext)
This method is intentionally undocumented. |
|
D2WInspectPage(WOContext aContext)
Constructs a D2WInspectPage with the specified context. |
|
D2WInspect(WOContext aContext)
Constructs a D2WInspect with the specified context. |
|
D2WHead(WOContext aContext)
Constructs a D2WHead with the specified context. |
|
D2WGenerationWrapper(WOContext aContext)
This method is intentionally undocumented. |
|
D2WErrorPage(WOContext aContext)
Constructs a D2WErrorPage with the specified context. |
|
D2WEmptyWrapper(WOContext aContext)
Creates an instance of D2WEmptyWrapper with the specified context. |
|
D2WEmbeddedComponent(WOContext aContext)
This method is intentionally undocumented. |
|
D2WEditUneditable(WOContext aContext)
Creates an instance of D2WEditUneditable with the specified context. |
|
D2WEditToOneRelationship(WOContext aContext)
Creates an instance of D2WEditToOneRelationship with the specified context. |
|
D2WEditToOneFault(WOContext aContext)
Creates an instance of D2WEditToOneFault with the specified context. |
|
D2WEditToManyRelationship(WOContext aContext)
Creates an instance of D2WEditToManyRelationship with the specified context. |
|
D2WEditToManyFault(WOContext aContext)
Creates an instance of D2WEditToManyFault with the specified context. |
|
D2WEditString(WOContext aContext)
Creates an instance of D2WEditString with the specified context. |
|
D2WEditRelationshipPage(WOContext aContext)
Constructs a D2WEditRelationshipPage with the specified context. |
|
D2WEditNumber(WOContext aContext)
Creates an instance of D2WEditNumber with the specified context. |
|
D2WEditLargeString(WOContext aContext)
Creates a new D2WEditLargeString with the specified context. |
|
D2WEditDate(WOContext aContext)
Creates a new D2WEditDate with the specified context. |
|
D2WEditBoolean(WOContext aContext)
Constructs a D2EditBoolean with the specified WOContext. |
|
D2WEdit(WOContext aContext)
Constructs a D2WEdit with the specified context. |
|
D2WDisplayToOneFault(WOContext aContext)
|
|
D2WDisplayToOne(WOContext aContext)
Creates a new D2WDisplayToOne with the specified aContext. |
|
D2WDisplayToManyTable(WOContext aContext)
Creates a new D2WDisplayToManyTable with the specified context. |
|
D2WDisplayToManyFault(WOContext aContext)
Creates a new D2WDisplayToManyFault with the specified aContext. |
|
D2WDisplayToManyBrowser(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayToMany2(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayToMany(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayThresholdColoredNumber(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayStyledString(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayStyledNumber(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayStyledDate(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayString(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayNumber(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayMailTo(WOContext aContext)
This method is intentionally undocumented. |
|
D2WDisplayLargeString(WOContext aContext)
Creates an instance of D2WDisplayLargeString with the specified context. |
|
D2WDisplayImageFromPath(WOContext aContext)
Creates an instance of D2WDisplayImageFromPath with the specified context. |
|
D2WDisplayImage(WOContext aContext)
Creates an instance of D2WDisplayImage with the specified context. |
|
D2WDisplayHyperlink(WOContext aContext)
Creates an instance of D2WDisplayHyperlink with the specified context. |
|
D2WDisplayDate(WOContext aContext)
Creates an instance of D2WDisplayDate with the specified context. |
|
D2WDisplayBoolean(WOContext aContext)
Creates an instance of D2WDisplayBoolean with the specified context. |
|
D2WDefaultCustomComponent(WOContext aContext)
Creates an instance of D2WDefaultCustomComponent with the specified context. |
|
D2WCustomQueryComponent(WOContext aContext)
Creates an instance of D2WCustomQueryComponent with the specified context. |
|
D2WCustomComponent(WOContext aContext)
Creates an instance of D2WCustomComponent with the specified context. |
|
D2WConfirmPage(WOContext aContext)
Constructs a D2WConfirmPage with the specified context. |
|
D2WComponent(WOContext aContext)
Constructs a D2WComponent with the specified context. |
|
D2WCompactInspectComponent(WOContext aContext)
|
|
D2WCollapsibleComponentContent(WOContext aContext)
|
|
BASSidePageWrapper(WOContext aContext)
|
|
BASSideHeader(WOContext aContext)
|
|
BASQueryPage(WOContext aContext)
|
|
BASQueryAllEntitiesPage(WOContext aContext)
|
|
BASPlainListPage(WOContext aContext)
|
|
BASMasterDetailPage(WOContext aContext)
|
|
BASListPage(WOContext aContext)
|
|
BASInspectPage(WOContext aContext)
|
|
BASErrorPage(WOContext aContext)
|
|
BASEditRelationshipPage(WOContext aContext)
|
|
BASDefaultHeader(WOContext aContext)
|
|
BASConfirmPage(WOContext aContext)
|
Uses of WOContext in com.webobjects.eodistribution |
Methods in com.webobjects.eodistribution with parameters of type WOContext | |
void |
WOJavaClientComponent.appendToResponse(WOResponse response,
WOContext context)
Overridden for internal purposes. |
WOActionResults |
WOJavaClientComponent.invokeAction(WORequest request,
WOContext context)
Overridden for internal purposes to dispatch Java Client requests. |
static String |
WOJavaClientComponent.webStartActionURL(WOContext context,
String pageName)
This static method returns the URL for calling a direct action which returns the JNLP file that initiates the WebStart download/update by the web browser. |
Constructors in com.webobjects.eodistribution with parameters of type WOContext | |
WOJavaClientJNLP(WOContext context)
Creates a new WOJavaClientJNLP component in a given context. |
|
WOJavaClientComponent(WOContext context)
Creates a new WOJavaClientComponent in a given context. |
|
WOJavaClientApplet(WOContext context)
Deprecated. Creates a new WOJavaClientApplet in a given context. |
Uses of WOContext in com.webobjects.eogeneration.rules |
Methods in com.webobjects.eogeneration.rules with parameters of type WOContext | |
void |
EOSwitchComponent.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
Uses of WOContext in com.webobjects.jspservlet |
Subclasses of WOContext in com.webobjects.jspservlet | |
class |
WOServletContext
Subclass of WOContext providing custom URL generation, to account for JSP Session IDs. |
Methods in com.webobjects.jspservlet with parameters of type WOContext | |
void |
WOServletSessionStore.saveSessionForContext(WOContext context)
|
Uses of WOContext in com.webobjects.smil |
Methods in com.webobjects.smil with parameters of type WOContext | |
void |
WOSMILMediaObject.appendToResponse(WOResponse resp,
WOContext cont)
|
void |
WOSMILDocument.appendToResponse(WOResponse resp,
WOContext cont)
Sets the response header " content-type " to "application/smil ". |
Constructors in com.webobjects.smil with parameters of type WOContext | |
WOSMILSynchronizationElement(WOContext context)
Creates a WOSMILSynchronizationElement. |
|
WOSMILSwitch(WOContext context)
Creates a WOSMILSwitch |
|
WOSMILSeq(WOContext context)
Creates a WOSMILSeq |
|
WOSMILRootLayout(WOContext context)
Creates a WOSMILRootLayout. |
|
WOSMILRegion(WOContext context)
Creates a WOSMILRegion. |
|
WOSMILPar(WOContext context)
Creates a WOSMILPar. |
|
WOSMILMediaObject(WOContext context)
Creates a WOSMILMediaObject. |
|
WOSMILHeadMeta(WOContext context)
Creates a WOSMILHeadMeta. |
|
WOSMILHeadLayout(WOContext context)
Creates a WOSMILHeadLayout. |
|
WOSMILHead(WOContext context)
Creates a WOSMILHead. |
|
WOSMILElement(WOContext context)
Creates a WOSMILElement. |
|
WOSMILDocument(WOContext context)
Creates a WOSMILDocument. |
|
WOSMILBody(WOContext context)
Creates a WOSMILBody. |
|
WOSMILAnchor(WOContext context)
Creates a WOSMILAnchor. |
|
WOSMILActivelink(WOContext context)
Creates a WOSMILActivelink. |
Uses of WOContext in com.webobjects.webservices.generation |
Methods in com.webobjects.webservices.generation with parameters of type WOContext | |
static EOEditingContext |
WOServiceUtilities.editingContextForContext(WOContext context)
Returns an EOEditingContext based on information in context . |
static boolean |
WOServiceUtilities.shouldCommitChangesImmediately(WOContext context)
Returns true if the operation should commit changes in its editing context
immediately after completing its work, false if the operation should
leave the changes in its editing context unsaved to the parent object store. |
Constructors in com.webobjects.webservices.generation with parameters of type WOContext | |
WOWSDLGeneration(WOContext context)
|
|
WOUpdateOperation(WOContext context)
|
|
WOSearchOperation(WOContext context)
|
|
WORollbackTransactionOperation(WOContext context)
|
|
WOOperationWSDLTemplate(WOContext context)
|
|
WOOperation(WOContext context)
Constructor for WOOperation. |
|
WOInsertOperation(WOContext context)
|
|
WOFetchSpecSearchOperation(WOContext context)
|
|
WODeleteOperation(WOContext context)
|
|
WOCommitTransactionOperation(WOContext context)
|
|
WOBeginTransactionOperation(WOContext context)
|
Uses of WOContext in com.webobjects.woextensions |
Methods in com.webobjects.woextensions with parameters of type WOContext | |
void |
WXOutlineEntry.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
WOActionResults |
WXOutlineEntry.invokeAction(WORequest aRequest,
WOContext aContext)
|
void |
WXOutlineEntry.takeValuesFromRequest(WORequest aRequest,
WOContext aContext)
|
void |
WOTabPanel.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
void |
WOTableString.appendToResponse(WOResponse aResponse,
WOContext aContext)
Deprecated. |
void |
WOTable.takeValuesFromRequest(WORequest aRequest,
WOContext aContext)
|
void |
WOStatsPage.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
void |
WOSessionRestorationError.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
void |
WOSessionCreationError.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
void |
WOPageRestorationError.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
void |
WOMethodInvocation.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
WOActionResults |
WOMethodInvocation.invokeAction(WORequest aRequest,
WOContext aContext)
|
void |
WOMethodInvocation.takeValuesFromRequest(WORequest aRequest,
WOContext aContext)
|
void |
WOLongResponsePage.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
WOActionResults |
WOLongResponsePage.invokeAction(WORequest aRequest,
WOContext aContext)
|
void |
WOCompletionBar.appendToResponse(WOResponse aResponse,
WOContext aContext)
|
void |
JSImageFlyover.appendToResponse(WOResponse response,
WOContext context)
|
|
Last updated Thu Oct 21 15:04:16 PDT 2004. | ||||||||||
PREV NEXT | FRAMES NO FRAMES |