Package | Description |
---|---|
ilog.views.diagrammer.datasource |
Contains the classes that define Diagrammer data sources.
|
ilog.views.gantt.model.table |
Contains a Gantt data model implementation that connects to Swing
TableModel
instances. |
ilog.views.sdm.model |
Contains the predefined data models in the SDM package.
|
ilog.views.util.data |
Provides utilities to manage data including facilities for mapping a Swing
TableModel to JViews models,
and also, JDBC, RowSet and CSV based implementations of a Swing TableModel for easy database and flat file access |
Constructor and Description |
---|
QueryParameters(String query,
IlvJDBCConnectionParameters connection,
IlvTableModelMapper mapper,
String defaultTag,
boolean defaultIsLinks)
Creates new query parameters.
|
QueryParameters(String query,
IlvJDBCConnectionParameters connection,
IlvTableModelMapper mapper,
String defaultTag,
boolean defaultIsLinks,
boolean mapAllColumns)
Creates new query parameters.
|
QueryParameters(String query,
Object[] queryParameters,
IlvJDBCConnectionParameters connection,
IlvTableModelMapper mapper,
String defaultTag,
boolean defaultIsLinks,
boolean mapAllColumns)
Creates new query parameters.
|
Modifier and Type | Method and Description |
---|---|
static IlvTableModelMapper |
IlvTableGanttModel.createActivityMapper(TableModel model,
int id,
int name,
int startTime,
int endTime,
int parentID)
Creates a new
IlvTableModelMapper that maps the different activity
properties to the specified column indexes. |
static IlvTableModelMapper |
IlvTableGanttModel.createActivityMapper(TableModel model,
Map mapping)
Creates a new
IlvTableModelMapper that maps the different
properties to the specified columns referenced by their names. |
static IlvTableModelMapper |
IlvTableGanttModel.createActivityMapper(TableModel model,
String id,
String name,
String startTime,
String endTime,
String parentID)
Creates a new
IlvTableModelMapper that maps the different
properties to the specified columns referenced by their names. |
static IlvTableModelMapper |
IlvTableGanttModel.createConstraintMapper(TableModel model,
int fromActivityID,
int toActivityID,
int constraintType,
Object[] typesMapping)
Creates a new
IlvTableModelMapper that maps the different
constraint properties to the specified column indexes. |
static IlvTableModelMapper |
IlvTableGanttModel.createConstraintMapper(TableModel model,
Map mapping,
Object[] typesMapping)
Creates a new
IlvTableModelMapper that maps the different
constraint properties to the specified column indexes. |
static IlvTableModelMapper |
IlvTableGanttModel.createConstraintMapper(TableModel model,
String fromActivityID,
String toActivityID,
String constraintType,
Object[] typesMapping)
Creates a new
IlvTableModelMapper that maps the different
constraint properties to the specified column indexes. |
static IlvTableModelMapper |
IlvTableGanttModel.createReservationMapper(TableModel model,
int activityID,
int resourceID)
Creates a new
IlvTableModelMapper that maps the different
properties to the specified column indexes. |
static IlvTableModelMapper |
IlvTableGanttModel.createReservationMapper(TableModel model,
Map mapping)
Creates a new
IlvTableModelMapper that maps the different
properties to the specified columns referenced by their names. |
static IlvTableModelMapper |
IlvTableGanttModel.createReservationMapper(TableModel model,
String activityID,
String resourceID)
Creates a new
IlvTableModelMapper that maps the different
properties to the specified columns referenced by their names. |
static IlvTableModelMapper |
IlvTableGanttModel.createResourceMapper(TableModel model,
int id,
int name,
int quantity,
int parentID)
Creates a new
IlvTableModelMapper that maps the different resource
properties to the specified column indexes. |
static IlvTableModelMapper |
IlvTableGanttModel.createResourceMapper(TableModel model,
Map mapping)
Creates a new
IlvTableModelMapper that maps the different
properties to the specified columns referenced by their names. |
static IlvTableModelMapper |
IlvTableGanttModel.createResourceMapper(TableModel model,
String id,
String name,
String quantity,
String parentID)
Creates a new
IlvTableModelMapper that maps the different
properties to the specified columns referenced by their names. |
IlvTableModelMapper |
IlvTableGanttModel.getActivityMapper()
Returns a copy of
IlvTableModelMapper for activities. |
IlvTableModelMapper |
IlvTableGanttModel.getConstraintMapper()
Returns a copy of
IlvTableModelMapper for constraints. |
IlvTableModelMapper |
IlvTableGanttModel.getReservationMapper()
Returns a copy of
IlvTableModelMapper for reservations. |
IlvTableModelMapper |
IlvTableGanttModel.getResourceMapper()
Returns a copy of
IlvTableModelMapper for resources. |
Modifier and Type | Method and Description |
---|---|
void |
IlvTableGanttModel.setActivityMapper(IlvTableModelMapper mapper)
Copies and sets the
IlvTableModelMapper for activities. |
void |
IlvTableGanttModel.setConstraintMapper(IlvTableModelMapper mapper)
Copies and sets the
IlvTableModelMapper for constraints. |
void |
IlvTableGanttModel.setReservationMapper(IlvTableModelMapper mapper)
Copies and sets the
IlvTableModelMapper for reservations. |
void |
IlvTableGanttModel.setResourceMapper(IlvTableModelMapper mapper)
Copies and sets the
IlvTableModelMapper for resources. |
Constructor and Description |
---|
IlvTableGanttModel(IlvTableModelMapper activitiesMapper,
IlvTableModelMapper resourcesMapper,
IlvTableModelMapper constraintsMapper,
IlvTableModelMapper reservationsMapper)
Builds an
IlvTableGanttModel from the given IlvTableModelMapper instances. |
Modifier and Type | Method and Description |
---|---|
IlvTableModelMapper |
IlvTableSDMModel.getTableMapper()
Returns the Table model mapper that is the source of this SDM model.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvTableSDMModel.setTableMapper(IlvTableModelMapper tableMapper)
Changes the Table model mapper that is the source of this SDM model.
|
Constructor and Description |
---|
IlvTableSDMModel(IlvTableModelMapper tableMapper,
String defaultTag,
boolean defaultIsLink)
Creates a new Table-to-SDM-model adapter.
|
IlvTableSDMModel(IlvTableModelMapper tableMapper,
String defaultTag,
boolean defaultIsLink,
boolean mapAllColumns)
Creates a new Table-to-SDM-model adapter.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvBasicTableModelMapper
This subclass of
IlvTableModelMapper maps each property
to a single column with an optional required type. |
Modifier and Type | Method and Description |
---|---|
static IlvTableModelMapper |
IlvTableModelMapper.deserialize(Element element)
Reads the description of a table model mapper from an XML element.
|
IlvTableModelMapper |
IlvJDBCQueryParameters.getMapper()
Returns the table mapper used to map the results of the query
to a Swing TableModel.
|
Constructor and Description |
---|
IlvJDBCQueryParameters(String query,
IlvJDBCConnectionParameters connection,
IlvTableModelMapper mapper)
Creates a new set of parameters for an SQL query.
|
IlvJDBCQueryParameters(String query,
Object[] queryParameters,
IlvJDBCConnectionParameters connection,
IlvTableModelMapper mapper)
Creates a new set of parameters for an SQL query.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.