Uses of Class
jimm.datavision.source.Table

Packages that use Table
jimm.datavision Provides the classes and interfaces that make up a DataVision report. 
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. 
jimm.datavision.test.mock.source   
 

Uses of Table in jimm.datavision
 

Methods in jimm.datavision that return Table
 Table UserColumn.getTable()
           
 Table Selectable.getTable()
          Returns the table to which this selectable belongs; may be null.
 

Uses of Table in jimm.datavision.gui
 

Fields in jimm.datavision.gui declared as Table
protected  Table FPTableInfo.table
           
 

Methods in jimm.datavision.gui with parameters of type Table
protected  void FieldPickerWin.addTableNode(javax.swing.tree.DefaultMutableTreeNode categoryNode, Table table)
          Creates and adds a node representing a data source table.
 

Constructors in jimm.datavision.gui with parameters of type Table
FPTableInfo(Table table, Designer designer)
           
 

Uses of Table in jimm.datavision.source
 

Fields in jimm.datavision.source declared as Table
(package private)  Table ColumnIterator.table
           
 

Methods in jimm.datavision.source that return Table
 Table Column.getTable()
          Returns the table to which this column belongs, if any.
 

Uses of Table in jimm.datavision.source.ncsql
 

Subclasses of Table in jimm.datavision.source.ncsql
 class NCTable
          A table for no-connection database sources.
 

Methods in jimm.datavision.source.ncsql that return Table
 Table NCColumn.getTable()
          Returns the table to which this column belongs.
 

Uses of Table in jimm.datavision.source.sql
 

Subclasses of Table in jimm.datavision.source.sql
 class SQLTable
          Represents a database table.
 

Methods in jimm.datavision.source.sql that return Table
protected  Table Database.findTable(java.lang.String tableName)
          Given a table name, find the table.
protected  Table Database.findTableWithId(java.lang.String id)
          Finds table with given id string.
 Table SQLColumn.getTable()
          Returns the table to which this column belongs.
 

Methods in jimm.datavision.source.sql with parameters of type Table
protected  void SQLQuery.addTable(Table t)
          Adds the table t to tables, but only if t is not null and is not already in tables.
 

Uses of Table in jimm.datavision.test
 

Subclasses of Table in jimm.datavision.test
(package private)  class TestTable
           
 

Uses of Table in jimm.datavision.test.mock.source
 

Methods in jimm.datavision.test.mock.source that return Table
protected  Table MockDataSource.findTable(java.lang.String tableName)
          Copied from Database and tweaked a bit.
protected  Table MockDataSource.findTableWithId(java.lang.String id)
          Copied from Database and tweaked a bit.
 

Methods in jimm.datavision.test.mock.source with parameters of type Table
protected  void MockDataSource.addColumn(Table table, java.lang.String name, int type)