Uses of Class
planetj.dataengine.AbstractContext

Packages that use AbstractContext
planetj.database   
planetj.dataengine   
planetj.dataengine.application   
planetj.dataengine.operation   
planetj.dataengine.sqloperation   
 

Uses of AbstractContext in planetj.database
 

Subclasses of AbstractContext in planetj.database
 class SQLContext
          Contains information about an SQL command, including parameters on how to run the command, the command itself, and how to organize the command's results.
 

Methods in planetj.database with parameters of type AbstractContext
 void Row.prepareForParameters(AbstractContext context, ExecutingContext pEc)
          This method is invoked on a parameter row just before it is displayed to the user.
 DataEngineCache DBSystem.getCache(AbstractContext context)
          Gets the cache which holds RC's read from this system
 

Uses of AbstractContext in planetj.dataengine
 

Subclasses of AbstractContext in planetj.dataengine
 class HTMLContext
           
 class JavaContext
           
 

Methods in planetj.dataengine that return AbstractContext
static AbstractContext DataEngineManager.getCurrentContext(HttpServletRequest request)
          Gets the current AbstractContext from the request.
 AbstractContext AbstractContext.getPrimaryContext()
          Gets this context's primary context.
 

Methods in planetj.dataengine with parameters of type AbstractContext
 void AbstractContext.setPrimaryContext(AbstractContext ac)
          Sets this context's primary context.
 

Uses of AbstractContext in planetj.dataengine.application
 

Subclasses of AbstractContext in planetj.dataengine.application
 class ApplicationSQLContext
          SQLContext used for queries which correspond to a specific Application or Operation
 

Methods in planetj.dataengine.application that return AbstractContext
 AbstractContext ApplicationSQLContext.getSecondaryContext(java.lang.String name)
          Gets the secondary context with the specified name, or null if no such secondary context exists
 

Methods in planetj.dataengine.application with parameters of type AbstractContext
 void ApplicationSQLContext.setSecondaryContext(java.lang.String name, AbstractContext ac)
          Sets the secondary context for a given name
 

Uses of AbstractContext in planetj.dataengine.operation
 

Subclasses of AbstractContext in planetj.dataengine.operation
 class HTMLOperationContext
           
 class JavaOperationContext
           
 class URLOperationContext
          !!A WK (6/26/2003 8:50:25 PM) this class is work in progress.
 

Uses of AbstractContext in planetj.dataengine.sqloperation
 

Methods in planetj.dataengine.sqloperation that return AbstractContext
 AbstractContext SQLOperation.preExecute(AbstractContext ac)
          This method is invoked just before a context is executed.
 

Methods in planetj.dataengine.sqloperation with parameters of type AbstractContext
 AbstractContext SQLOperation.preExecute(AbstractContext ac)
          This method is invoked just before a context is executed.
 java.lang.Object SQLOperation.postExecute(java.lang.Object result, AbstractContext ac)
          This method is invoked just after a context is executed.
 java.lang.Object MultiSystemSQLOperation.postExecute(java.lang.Object result, AbstractContext sqlC)