Uses of Class
jimm.datavision.Parameter

Packages that use Parameter
jimm.datavision Provides the classes and interfaces that make up a DataVision report. 
jimm.datavision.field Field, its subclasses, and related classes like Format and Border. 
jimm.datavision.gui Provides the classes and interfaces that make up the graphical user interface used to build and run DataVision reports. 
jimm.datavision.gui.cmd Provides the classes and interfaces that make up the undo/redo command structure. 
jimm.datavision.gui.parameter Provides the classes and interfaces that make up the graphical user interface for editing parameters and asking the user to provide their values. 
jimm.datavision.source The abstract classes and interfaces that define a data source. 
 

Uses of Parameter in jimm.datavision
 

Fields in jimm.datavision declared as Parameter
protected  Parameter ParameterReader.parameter
           
protected  Parameter ReportReader.parameter
           
 

Methods in jimm.datavision that return Parameter
 Parameter Report.findParameter(java.lang.Object id)
          Returns the parameter with the specified id or null if one is not found.
 Parameter Report.findParameterByName(java.lang.String name)
          Returns the parameter with the specified name or null if one is not found.
 

Methods in jimm.datavision with parameters of type Parameter
 void Report.addParameter(Parameter p)
           
 boolean Report.containsReferenceTo(Parameter p)
          Returns true if the specified parameter exists within this report either directly (as a parameter field) or indirectly (as a parameter used by a aggregate or by another parameter or in the query's where clause).
 boolean Section.containsReferenceTo(Parameter p)
          Returns true if the specified parameter exists within this section either directly (as a parameter field) or indirectly (as a parameter used by an aggregate, a formula, or by the suppression proc).
 boolean SuppressionProc.refersTo(Parameter p)
           
 boolean Expression.refersTo(Parameter p)
          Returns true if this expression contains a reference to the specified parameter.
 void Report.removeParameter(Parameter p)
           
 

Uses of Parameter in jimm.datavision.field
 

Fields in jimm.datavision.field declared as Parameter
protected  Parameter ParameterField.parameter
           
 

Methods in jimm.datavision.field that return Parameter
 Parameter ParameterField.getParameter()
          Returns the parameter.
 

Methods in jimm.datavision.field with parameters of type Parameter
 boolean ParameterField.refersTo(Parameter p)
           
 boolean AggregateField.refersTo(Parameter p)
           
 boolean Field.refersTo(Parameter p)
          Returns true if this field contains a reference to the specified parameter.
 boolean UserColumnField.refersTo(Parameter p)
           
 boolean FormulaField.refersTo(Parameter p)
           
 void ParameterField.setParameter(Parameter newParameter)
          Sets the parameter.
 

Uses of Parameter in jimm.datavision.gui
 

Methods in jimm.datavision.gui with parameters of type Parameter
protected  boolean FieldPickerWin.renameParameter(Parameter p)
          Opens a name editor to (re)name a parameter.
 

Constructors in jimm.datavision.gui with parameters of type Parameter
ParameterInfo(Report r, Parameter p, Designer designer)
           
 

Uses of Parameter in jimm.datavision.gui.cmd
 

Fields in jimm.datavision.gui.cmd declared as Parameter
(package private)  Parameter ParamEditCommand.param
           
 

Constructors in jimm.datavision.gui.cmd with parameters of type Parameter
ParamEditCommand(Parameter param, java.lang.String name, java.lang.String question, int type, int arity, java.util.List defaultValues)
          Constructor.
 

Uses of Parameter in jimm.datavision.gui.parameter
 

Fields in jimm.datavision.gui.parameter declared as Parameter
protected  Parameter ParamEditWin.param
           
protected  Parameter Inquisitor.parameter
           
protected  Parameter ParamAskWin.selectedParameter
           
 

Methods in jimm.datavision.gui.parameter with parameters of type Parameter
static Inquisitor Inquisitor.create(Parameter param)
          This factory method returns the proper inquisitor for the specified parameter.
 

Constructors in jimm.datavision.gui.parameter with parameters of type Parameter
BoolInq(Parameter param)
           
Inquisitor(Parameter param)
          Constructor.
ListNumericInq(Parameter param, boolean allowMultipleSelection)
           
ListStringInq(Parameter param, boolean allowMultipleSelection)
           
ParamEditWin(Designer designer, Parameter p)
          Constructor.
RangeDateInq(Parameter param)
           
RangeNumericInq(Parameter param)
           
RangeStringInq(Parameter param)
           
SingleDateInq(Parameter param)
           
SingleNumericInq(Parameter param)
           
SingleStringInq(Parameter param)
           
 

Uses of Parameter in jimm.datavision.source
 

Methods in jimm.datavision.source with parameters of type Parameter
 boolean DataSource.containsReferenceTo(Parameter p)
          Returns true if the specified parameter exists within this data source's query.
 boolean Query.containsReferenceTo(Parameter p)
          Returns true if the specified parameter exists within this query's where clause.