Uses of Interface
com.sas.table.StaticTableInterface

Packages that use StaticTableInterface
com.sas.storage.jdbc Classes for Java Database Connectivity. 
com.sas.swing.models Model adapters to convert between existing SAS java models and new JDK1.2 models and visuals. 
com.sas.table A set of interfaces for accessing two-dimensional data, and a set of classes for viewing and manipulating that data in tabular form. 
 

Uses of StaticTableInterface in com.sas.storage.jdbc
 

Classes in com.sas.storage.jdbc that implement StaticTableInterface
 class JDBCToDataTableAdapter
          The JDBCToDataTableAdapter allows JDBC data sources to be displayed in any viewer that requires a model of type com.sas.table.DataTableInterface, such as the com.sas.table.TableView.
 

Uses of StaticTableInterface in com.sas.swing.models
 

Fields in com.sas.swing.models declared as StaticTableInterface
protected  StaticTableInterface TableModelAdapter.model
           
 

Methods in com.sas.swing.models that return StaticTableInterface
 StaticTableInterface TableModelAdapter.getModel()
          Get the model used by the adapter.
protected  StaticTableInterface TableModelAdapter.newDefaultModel()
          Create a new default model.
 

Methods in com.sas.swing.models with parameters of type StaticTableInterface
 void TableModelAdapter.setModel(StaticTableInterface table)
          Set the model used by the adapter to delegate all table calls.
 

Constructors in com.sas.swing.models with parameters of type StaticTableInterface
TableModelAdapter(StaticTableInterface table)
          Constructor that sets the model of the adapter.
 

Uses of StaticTableInterface in com.sas.table
 

Subinterfaces of StaticTableInterface in com.sas.table
 interface ColumnTemplateTableInterface
          Defines an interface for modifying column template tables.
 interface DataTableInterface
           DataTableInterface defines an interface to a database DataTableInterface defines methods for setting and retrieving formatted or unformatted data from a database.
 interface FreeformTableInterface
          Defines an interface for modifying freeform tables.
 interface RowTemplateTableInterface
          Defines an interface for modifying row template tables.
 interface StaticColumnTemplateTableInterface
          Defines an interface for accessing column template tables.
 interface StaticRowTemplateTableInterface
          Defines an interface for accessing row template tables.
 interface TableInterface
          Defines an interface for modifying a table's cells.
 

Methods in com.sas.table with parameters of type StaticTableInterface
static int StaticTableInterfaceSupport.countColumns(StaticTableInterface table, int maxCount)
          Use when your implementation of getColumnCount() does not return -1.
static int StaticTableInterfaceSupport.countRows(StaticTableInterface table, int maxCount)
          Use when your implementation of getRowCount() does not return -1.
static void TableWriter.export(StaticTableInterface table)
          Sends the table to Excel or to the browser, as appropriate.
static void TableWriter.export(StaticTableInterface table, boolean formattedDataUsed)
          Sends the table to Excel or to the browser, as appropriate.
static java.lang.Class[][] StaticTableInterfaceSupport.getCellClasses(StaticTableInterface table, int startRowIndex, int startColumnIndex, int rowCount, int columnCount)
          Calls table.getCellClass(rowIndex, colIndex) rowCount times columnCount times.
static java.lang.Object[][] StaticTableInterfaceSupport.getCells(StaticTableInterface table, int startRowIndex, int startColumnIndex, int rowCount, int columnCount)
          Calls table.getCell(rowIndex, colIndex) rowCount times columnCount times.
static java.lang.Object[] StaticTableInterfaceSupport.getColumn(StaticTableInterface table, int colIndex)
          Calls table.getCell(rowIndex, colIndex) table.getRowCount() times.
static byte[] TableWriter.getCSVAsByteArray(StaticTableInterface model)
          Convenience method to represent a table as a CSV and return it as a byte array.
static byte[] TableWriter.getCSVAsByteArray(StaticTableInterface model, boolean formattedDataUsed)
          Convenience method to represent a table as a CSV and return it as a byte array.
static java.lang.Object[] StaticTableInterfaceSupport.getRow(StaticTableInterface table, int rowIndex)
          Calls table.getCell(rowIndex, colIndex) table.getColumnCount() times.
 void TableWriter.writeCSV(StaticTableInterface model)
          Writes a table as a CSV to the writer specified in the constructor.
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.