Uses of Interface
planetj.dataengine.parameter.IParameter

Packages that use IParameter
planetj.database.sql   
planetj.dataengine   
planetj.dataengine.parameter   
 

Uses of IParameter in planetj.database.sql
 

Methods in planetj.database.sql that return IParameter
 IParameter ValueToken.getParameter()
          Gets the parameter stored in this ValueToken.
 IParameter SQLComparison.getParameter(int index)
          Gets one of this comparison's parameters, based by index.
 

Uses of IParameter in planetj.dataengine
 

Methods in planetj.dataengine that return IParameter
 IParameter IContext.getParameter(int index)
          Gets a parameter, based on its index
 IParameter IContext.getParameter(String uniqueId)
          Gets a parameter, based on its unique ID
 IParameter AbstractContext.getParameter(int index)
          Gets a parameter, based on its index
 IParameter AbstractContext.getParameter(String uniqueId)
          Gets a parameter by its unique id, or by its context specific id
 

Uses of IParameter in planetj.dataengine.parameter
 

Subinterfaces of IParameter in planetj.dataengine.parameter
 interface IDisplayParameter
          A parameter which may be displayed as a prompt to the user, who might then provide a value for the parameter.
 interface IJDBCSQLParameter
          A parameter whose value may possibly be sent to a Database Manager as a parameter.
 

Classes in planetj.dataengine.parameter that implement IParameter
 class AbstractParameter
          A general implementation of the IParameter interface
 class ContextParameterParameter
          A parameter whose value can be extracted from a AbstractContext object.
 class DataEngineServletParameter
          A parameter whose value is the URL of a DataEngine Servlet
 class ExecutingContextParameter
          A parameter which gets its value from an ExecutingContext
 class FieldOrUsageIdParameter
          A parameter which can get its values based on a usage id or a field name
 class ParameterManager
          Contains methods for working with parameters
 class ParameterParameter
          A parameter which gets its value from another parameter.
 class RequestAttribute
          A parameter which gets its value from an HttpServletRequest
 class RequestParameter
          A parameter which gets its value from an HttpServletRequest
 class RequestPromptParameter
          A parameter which can be displayed as a prompt to the user.
 class RowParameter
          A parameter whose value can be extracted from a Row object.
 class RuntimeParameter
          A parameter whose value is set upon application startup
 class ShadowParameter
          Temporarily holds a parameter value when the appropriate parameter doesn't exist.
 class SQLPromptParameter
          A parameter which corresponds to an SQLComparison.
 class TableParameter
          A parameter whose value is a String which indentifies a table.
 class UserParameter
          A parameter which can extract its value from an IUser object.
 

Methods in planetj.dataengine.parameter that return IParameter
 IParameter RequestPromptParameter.cloneParameter()
          Clones this parameter
 IParameter ParameterCollection.getParameter(int index)
          Gets a parameter by its index.
 IParameter ParameterCollection.getParameter(int pIndex, boolean pCreate)
          Gets a parameter by its index.
 IParameter ParameterCollection.getParameter(String parameterId)
          Gets a parameter by its its context specific id, or by its name, or by a named index.
 IParameter IParameter.cloneParameter()
          Clones this parameter
 IParameter AbstractParameter.cloneParameter()
          Clones this parameter
 

Methods in planetj.dataengine.parameter with parameters of type IParameter
static ShadowParameter ShadowParameter.toShadow(IParameter param)
          Converts a parameter into a ShadowParameter.
static boolean ParameterManager.isDisplayParameter(IParameter param)
          Tests if the parameter should be displayed to the user
static boolean ParameterManager.isSQLParameter(IParameter param)
          Tests if the parameter should be passed as a parameter to SQL
 void ParameterCollection.addParameter(IParameter param)
          Adds a parameter to this collection.