Uses of Interface
jimm.datavision.Identity

Packages that use Identity
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.source The abstract classes and interfaces that define a data source. 
jimm.datavision.source.ncsql A data source that acts like a database data source but can't run reports and gets its column descriptions from metadata described in the report XML file. 
jimm.datavision.source.sql Provides the classes and interfaces that make up the database data source. 
jimm.datavision.test Provides the JUnit test classes used during DataVision development. 
 

Uses of Identity in jimm.datavision
 

Classes in jimm.datavision that implement Identity
 class Expression
          The abstract superclass of objects that are evaluated, such as formulas and user columns.
 class Formula
          A formula is a Bean Scripting Framework (BSF) script evaluated at runtime.
 class Parameter
          A parameter is a piece of data the value of which is determined by asking the user each time a report runs.
 class Subreport
          A subreport is a report whose query is run every time the field containing it is output.
 class UserColumn
          A user column is an arbitrary expression inserted into the SQL query and retrieved as a column value.
 

Uses of Identity in jimm.datavision.field
 

Classes in jimm.datavision.field that implement Identity
 class AggregateField
          An aggregate field represents a field's aggregated values, either ColumnField or FormulaField.
 class ColumnField
          A column field represents a data source column.
 class Field
          The abstract superclass of visual report fields that display text labels, database columns, special values, aggregate values, formulas, and parameters.
 class FormulaField
          A formula field represents a formula calculated on-the-fly.
 class ImageField
          Represents an external image.
 class ParameterField
          A parameter field represents a parameter.
 class SpecialField
          A SpecialField represents a special value such as the report name or current page number.
 class SubreportField
          A subreport field represents an entire report within a field.
 class TextField
          A text field represents static text.
 class UserColumnField
          A user column field represents a user column, which in turn holds some SQL that is put in the SELECT clause of a query.
 

Uses of Identity in jimm.datavision.source
 

Classes in jimm.datavision.source that implement Identity
 class Column
          Represents a data column.
 class Table
          Represents a table that contains columns.
 

Uses of Identity in jimm.datavision.source.ncsql
 

Classes in jimm.datavision.source.ncsql that implement Identity
 class NCColumn
          A database column.
 class NCTable
          A table for no-connection database sources.
 

Uses of Identity in jimm.datavision.source.sql
 

Classes in jimm.datavision.source.sql that implement Identity
 class SQLColumn
          A database column.
 class SQLTable
          Represents a database table.
 

Uses of Identity in jimm.datavision.test
 

Classes in jimm.datavision.test that implement Identity
(package private)  class TestColumn
           
(package private)  class TestTable