Uses of Interface
jimm.datavision.Draggable

Packages that use Draggable
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.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 Draggable in jimm.datavision
 

Classes in jimm.datavision that implement Draggable
 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 UserColumn
          A user column is an arbitrary expression inserted into the SQL query and retrieved as a column value.
 

Uses of Draggable in jimm.datavision.field
 

Classes in jimm.datavision.field that implement Draggable
 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 Draggable in jimm.datavision.gui
 

Constructors in jimm.datavision.gui with parameters of type Draggable
FPLeafInfo(Draggable obj, Designer designer)
           
 

Uses of Draggable in jimm.datavision.source
 

Classes in jimm.datavision.source that implement Draggable
 class Column
          Represents a data column.
 

Uses of Draggable in jimm.datavision.source.ncsql
 

Classes in jimm.datavision.source.ncsql that implement Draggable
 class NCColumn
          A database column.
 

Uses of Draggable in jimm.datavision.source.sql
 

Classes in jimm.datavision.source.sql that implement Draggable
 class SQLColumn
          A database column.
 

Uses of Draggable in jimm.datavision.test
 

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