|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of RowCollection in planetj.chart |
Methods in planetj.chart with parameters of type RowCollection | |
com.jrefinery.chart.JFreeChart |
ChartManager.createCategoryChart(RowCollection data,
ChartSpecificationPG chartSpecs)
|
com.jrefinery.chart.JFreeChart |
ChartManager.createChart(RowCollection data,
ChartSpecificationPG chartSpecs)
Convience method to create a JFreeChart given the data and chart specifications. |
protected java.lang.Number[][] |
ChartManager.extractCategoryData(RowCollection rc,
java.util.List columnNames,
boolean plotByRow)
Extracts values from the given RowCollection to create a double array of Numeric values that can be used to create a category chart. |
com.jrefinery.data.CategoryDataset |
ChartManager.getCategoryDataset(RowCollection rc,
ChartSpecificationPG chartSpecs)
Creates a CategoryDataset using the given chart specifications and data. |
ChartSpecificationPG |
ChartManager.getChartSpecifications(java.lang.String chartId,
RowCollection rc)
Convience method to retrieve a chart specification property group that has the given chart id from a given RowCollection. |
Uses of RowCollection in planetj.database |
Subclasses of RowCollection in planetj.database | |
static class |
RowCollection.LinkedRowCollection
A subclass of RowCollection which uses a LinkedList internally instead of an ArrayList. |
Methods in planetj.database that return RowCollection | |
RowCollection |
Table.getAllRows()
Gets all the rows from the table |
RowCollection |
SQLContext.getRowCollection()
Gets the RowCollection object into which retrieved rows will be inserted. |
RowCollection |
RowCollection.advanceRowCollection(int pages)
Get a RowCollection the number of pages ahead or behind the current one. |
RowCollection |
RowCollection.cloneRowCollection()
Creates a deep copy of this RC (the Rows and Fields in this RC are cloned as well). |
static RowCollection |
RowCollection.createRowCollection(java.lang.Class rcSubclass,
Table table,
java.util.List fieldNames)
Creates a RowCollection based on a RowCollection subclass, table, and field names |
static RowCollection |
RowCollection.createRowCollection(SQLContext context)
Creates a new RowCollection object based on the information in a SQLContext. |
RowCollection |
RowCollection.filter(java.lang.String fieldName,
int comparison,
java.lang.Object obj)
Return a RowCollection that matches the filter criteria. |
RowCollection |
RowCollection.getCompleteRowCollection()
Gets a RowCollection containing Rows having all Fields using the same search criteria as this RowCollection. |
RowCollection |
RowCollection.getCompleteRowCollection(java.sql.Connection pConnection)
Gets a RowCollection containing Rows having all Fields using the same search criteria as this RowCollection. |
RowCollection |
RowCollection.getNextRowCollection()
Gets a RowCollection containing another group of rows which satisfy the query that was used to create this RowCollection. |
RowCollection |
RowCollection.getNextRowCollection(int pNumberOfRows)
Gets a RowCollection containing another group of rows which satisfy the query that was used to create this RowCollection. |
RowCollection |
RowCollection.getPreviousRowCollection()
Gets a RowCollection containing another group of rows which satisfy the query that was used to create this RowCollection. |
RowCollection |
RowCollection.getPreviousRowCollection(int pNumberOfRows)
WK (4/24/2002 9:16:11 AM): Need to reword javadoc, first row is now the number of records per page before the previous row - fixes bug when last row collection doesn't contain the complete number of pages Gets a RowCollection containing another group of rows which satisfy the query that was used to create this RowCollection. |
protected RowCollection |
RowCollection.getRowCollection(java.util.List columns)
Gets a RowCollection from this RowCollection's SQL that contains the proper given column names. |
RowCollection |
RowCollection.getSelectedRowCollection()
Get the selected Rows of this RowCollection |
RowCollection |
RowCollection.prepareForCache(ExecutingContext ec)
This method is intended for subclasses to override and provide their own functionality if needed. |
RowCollection |
RowCollection.prepareForDisplay(ExecutingContext ec)
This method is intended for subclass to override and provide their own functionality. |
RowCollection |
RowCollection.prepareForResults(ExecutingContext ec)
Gets the a proper RowCollection for viewing this RowCollections results. |
RowCollection |
RowCollection.prepareForReturnFromCache(ExecutingContext ec)
This method is intended for subclasses to override and provide their own functionality if needed. |
RowCollection |
RowCollection.prepareFromFieldNames(java.util.List pNames)
Gets the a proper RowCollection for viewing this RowCollections results. |
RowCollection |
RowCollection.refresh()
This method will refresh this RowCollection from the database and return this. |
RowCollection |
RowCollection.refreshIfNeeded()
Refreshes this RowCollection from the database, but only if one or more of the tables whose data is contained in this RowCollection has been updated with the DataEngine since this RowCollection was last read from the database. |
RowCollection |
RowCollection.rollbackChanges()
Undoes any changes that have been made to this RowCollection since it was read from or written to the database. |
RowCollection |
RowCollection.sort(java.lang.String[] pColumnNames,
java.lang.String pSortOrder)
Sorts the Rows in this RowCollection. If this RowCollection contains all rows from its database table, then we can do an internal sort. |
RowCollection |
Row.getChildren()
Gets a RowCollection of children this Row has. |
RowCollection |
Row.getFieldPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
Row.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
Row.getRowCollection()
Gets the first RowCollection this Row is contained in. |
protected RowCollection |
Row.runSQLQuery(java.lang.String sqlStatement)
Convenience method for running an SQL query statement against tables on the same machine. |
protected RowCollection |
Row.runSQLQuery(java.lang.String sqlStatement,
java.lang.Class rowClass)
Convenience method for running an SQL query statement against tables on the same machine. |
RowCollection |
IAssociatedData.getAssociatedRows(java.lang.String pLib,
java.lang.String pTableName)
Deprecated. Get A Row Associated With This Row |
RowCollection |
IAssociatedData.getAssociations()
Deprecated. Return a RowCollection of FieldDescriptorRows for this Table that have a Associations defined for them. |
RowCollection |
Field.getPossibleValues()
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
Field.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
static RowCollection |
DataEngine.getRows(java.lang.String systemURL,
java.lang.String sqlString)
Return a RowCollection using the default system Connection. |
static RowCollection |
DataEngine.getRows(java.lang.String systemURL,
java.lang.String sqlString,
java.lang.Class rowSubClass)
Return a RowCollection using a connection from the specified system url. |
static RowCollection |
DataEngine.getRows(java.sql.Connection conn,
java.lang.String sqlString)
Return a RowCollection using the given Connection and sql String. |
static RowCollection |
DataEngine.getRows(java.sql.Connection conn,
java.lang.String sqlString,
java.lang.Class rowSubClass)
Return a RowCollection using the default system Connection. |
static RowCollection |
DataEngine.getRows(SQLContext context)
Retrieves rows from the database based on the criteria in the SQLContext. |
protected static RowCollection |
DataEngine.getRowsInternal(SQLContext context)
Retrieves rows from the database based on the criteria in the SQLContext. |
Methods in planetj.database with parameters of type RowCollection | |
static java.lang.String |
SQLGenerator.generateCreateTableStatementFromRowCollection(Table pTable,
RowCollection rc)
Generates a CREATE TABLE Statement that constructs a table based on the specified Table |
static java.lang.StringBuffer |
SQLGenerator.appendInsertStatements(RowCollection rc,
ExecutingContext ec,
java.lang.StringBuffer sql)
|
SQLContext |
SQLContext.setRowCollection(RowCollection newRowCollection)
Sets the RowCollection object into which retrieved rows will be inserted. |
protected void |
RowCollection.cloneAttributes(RowCollection rc)
|
protected void |
RowCollection.join(FieldDescriptorRow joinFD,
RowCollection rc,
java.lang.String joinType)
Joins another RowCollection onto this one. |
static Row |
Row.create(RowCollection pRowCollection)
Create and return a new Row and also set its Table. |
static Row |
Row.create(RowCollection pRowCollection,
java.lang.Class rowSubClass)
Create and return a new Row and also set its Table. |
static Row |
Row.create(RowCollection pRowCollection,
boolean initialRow)
Create and return a new Row and also set its Table. |
static Row |
Row.create(RowCollection pRowCollection,
java.lang.Class rowSubClass,
boolean initialRow)
Create and return a new Row and also set its Table. |
void |
Row.add(RowCollection pRowCollection)
Adds the given RowCollection to the List of RowCollection's this Row belongs to. |
int |
Row.addToRowCollection(RowCollection rc)
Adds this row to a RowCollection. |
void |
Row.defaultMerge(RowCollection rc)
Works similar to the merge method, except all the fields that are merged into this row have the default values for that field type instead of actual values. |
static void |
MSAccessDBSystem.export(RowCollection rc,
MSAccessDescriptor descriptor)
Writes out the RowCollection to an MS Access file |
void |
IDataEngineListener.queryCompleted(SQLContext context,
RowCollection rc)
This method is invoked when a SQLContext object with which this listener is registered is used in a DataEngine query. |
static short |
Field.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static int |
DataEngine.copyRowCollectionToTable(java.sql.Connection connection,
Table copyToTable,
RowCollection rc)
This method copies a row collection to the specified table. |
static int |
DataEngine.copyRowCollectionToTable(Table pCopyToTable,
RowCollection pRC)
This method copies a row collection to the specified table. |
Uses of RowCollection in planetj.database.field |
Methods in planetj.database.field that return RowCollection | |
RowCollection |
StateField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
RegistrationModeField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
GenderField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
CreditCardTypeField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
CreditCardExpirationYearField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
CreditCardExpirationMonthField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
Methods in planetj.database.field with parameters of type RowCollection | |
static short |
ZipCodeSuffixField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
ZipCodeField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
YNBooleanField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
YBlankBooleanField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
UserIdField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
URLReferenceField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection sampleData)
Checks to see the probability that sample data containing the column for the given FieldDescriptor contains a URLReferenceField. |
static short |
TrackingNumberField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
|
static short |
TimestampField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
TimeField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
TFBooleanField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
StateField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
SocialSecurityNumberField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
PhoneNumberField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
PhoneNumberAreaCodeField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
PasswordField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
LastUpdateTimestampField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
|
static short |
LastNameField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
ImageURLReferenceField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
GenderField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
FlatFileReferenceField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
FirstNameField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static java.util.List |
FieldSet.getFieldNameSets(RowCollection pRc)
Returns a List containing FieldSet objects. |
static short |
FaxNumberField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
EmailField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
DateField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
CreditCardTypeField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
CreditCardNumberField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
CreditCardExpirationYearField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
CreditCardExpirationMonthField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
CityField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
CellNumberField.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
Address2Field.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
static short |
Address1Field.guessFieldClassProbability(FieldDescriptorRow pFDRow,
RowCollection pSampleData)
Subclasses will override to take an educated guess at what the Field Class will be for this FD Row. |
Uses of RowCollection in planetj.database.fielddescriptors |
Methods in planetj.database.fielddescriptors that return RowCollection | |
RowCollection |
FieldDescriptorRow.getPossibleValues(Field field)
Returns a RowCollection containing the possible values for the Field. |
RowCollection |
FieldDescriptorRow.getSampleFieldData()
Returns a RowCollection of sample Data that relates to the field that this FD describes Creation date: (6/20/2002 11:12:15 AM) |
RowCollection |
FieldDescriptorRow.getSampleTableData()
Returns a RowCollection of sample Data that relates to the library and table that this FD describes Creation date: (6/20/2002 11:12:15 AM) |
static RowCollection |
FieldDescriptorManager.createFDsFromDBMetaData(java.sql.Connection connection,
Table table)
Create field descriptors for the specified Table. |
static RowCollection |
FieldDescriptorManager.createFDsFromDBMetaData(Table pTable)
Create field descriptors for the specified Table. |
static RowCollection |
FieldDescriptorManager.createFDsFromFile(Table pTable)
Retrieves and creates any new FieldDescriptors from the Field data file that have not yet been created for the specified Table. |
static RowCollection |
FieldDescriptorManager.getFDsFromFile(java.lang.String metadataAlias,
java.lang.String connectionAlias,
int ownerId)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(java.lang.String pFDSystemAlias,
Library pLibrary,
int pNumPerPage)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(Library pLibrary,
int pNumPerPage)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(Table pTable,
int pNumPerPage)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(Table pTable,
int pNumPerPage,
java.util.List orderByColumns)
|
Methods in planetj.database.fielddescriptors with parameters of type RowCollection | |
static void |
FieldDescriptorManager.addFDs(RowCollection pFDRows)
Add field descriptors. |
static void |
FieldDescriptorManager.addFDs(RowCollection pFDRows,
Table pTable)
Add field descriptors. |
static void |
FieldDescriptorManager.addFDs(RowCollection pFDRows,
Table pTable,
boolean pReplace)
Add field descriptors. |
static void |
FieldDescriptorManager.addFDs(RowCollection pFDRows,
boolean pReplace)
Add field descriptors. |
Uses of RowCollection in planetj.database.filter |
Subclasses of RowCollection in planetj.database.filter | |
class |
FilteredRowCollection
A FilteredRowCollection is returned by the RowCollection.filter() method. |
Methods in planetj.database.filter that return RowCollection | |
RowCollection |
FilteredRowCollection.getParent()
Gets the RowCollection from which this FilteredRowCollection was created |
RowCollection |
FilteredRowCollection.sort(java.lang.String[] pColumnNames,
java.lang.String pSortOrder)
Sorts the Rows in this RowCollection. If this RowCollection contains all rows from its database table, then we can do an internal sort. |
Methods in planetj.database.filter with parameters of type RowCollection | |
void |
FilteredRowCollection.setParent(RowCollection newParent)
Sets the parent of this FilteredRowCollection. |
Uses of RowCollection in planetj.database.possiblevalues |
Subclasses of RowCollection in planetj.database.possiblevalues | |
class |
PossibleValueRowCollection
|
class |
UserMessageRowCollection
|
Methods in planetj.database.possiblevalues that return RowCollection | |
static RowCollection |
PossibleValueManager.getConfigProperties(java.lang.String metaDataSystemAlias,
java.lang.String key,
java.lang.String[] orderByColumnNames,
int ownerId)
This will return a RowCollection fo PossibleValues with the givin key @ pKey |
static RowCollection |
PossibleValueManager.getPossibleValues(java.lang.String metaDataSystemAlias,
java.lang.String key,
java.lang.String[] orderByColumnNames)
Deprecated. owner id should be required when attempting to get possible values |
static RowCollection |
PossibleValueManager.getPossibleValues(java.lang.String metaDataSystemAlias,
java.lang.String key,
java.lang.String[] orderByColumnNames,
int ownerId)
This will return a RowCollection fo PossibleValues with the givin key @ pKey |
static RowCollection |
PossibleValueManager.getMessages(java.lang.String key,
Row row)
Get messages for given key and Row. |
static RowCollection |
PossibleValueManager.getMessages(java.lang.String key,
java.lang.String system,
java.lang.String library,
java.lang.String table,
Application app)
Get messages for given key for owner of the application. |
static RowCollection |
PossibleValueManager.getAllMessages(Application app)
Get all owner messages for an owner and application |
Uses of RowCollection in planetj.database.report |
Subclasses of RowCollection in planetj.database.report | |
class |
ReportBreakRowCollection
A RowCollection which knows how to generate report breaks. |
Methods in planetj.database.report that return RowCollection | |
RowCollection |
ReportBreakRowCollection.getNextRowCollection(int pNumberOfRows)
|
RowCollection |
ReportBreakRowCollection.getPreviousRowCollection(int pNumberOfRows)
|
RowCollection |
ReportBreakRowCollection.refresh()
|
Methods in planetj.database.report with parameters of type RowCollection | |
static int |
ReportBreakRowCollection.getReportRowCount(RowCollection rc)
Gets the number of ReportBreakRows currently contained in the RowCollection. |
protected Row |
ReportBreak.generateReport(java.util.List pFieldDescriptors,
RowCollection rc)
Generates a report containing the values of all this ReportBreak's column functions. |
Row |
ReportBreak.processRow(Row pRow,
RowCollection pRC)
Passes a Row into to one or more column functions, and determines if a ReportBreakRow needs to be positioned prior to that Row |
Uses of RowCollection in planetj.dataengine |
Methods in planetj.dataengine that return RowCollection | |
static RowCollection |
SessionManager.getRowCollection(HttpServletRequest request)
Deprecated. RowCollection's should no be set on the request as a persistent or page attribute. call HttpRequestManager.getAttribute(String, HttpSerlvetRequest) |
static RowCollection |
SessionManager.getRowCollection(HttpServletRequest pRequest,
java.lang.String pRowCollectionKey)
Deprecated. RowCollection's should no be set on the request as a persistent or page attribute. call HttpRequestManager.getAttribute(String, HttpSerlvetRequest) |
static RowCollection |
SerializationUtility.deserialize(java.lang.String pFileName)
Deserializes the RowCollection located in the specified file. |
static RowCollection |
DataEngineManager.getCurrentRowCollection(HttpServletRequest request)
Gets the current RowCollection from the request. |
static RowCollection |
DataEngineManager.getRowCollection(Operation operation,
HttpServletRequest request)
Gets the RowCollection for the given Operation out of the request. |
Methods in planetj.dataengine with parameters of type RowCollection | |
static void |
SessionManager.setRowCollection(RowCollection rc,
HttpServletRequest request)
Deprecated. RowCollection's should now be set as request page attributes HttpRequestManager.setPageAttribute(String, Object, HttpServletRequest) |
static void |
SerializationUtility.serializeRCToApplet(RowCollection pRowCollection,
HttpServletResponse pResponse)
Serializes a RowCollection to the specified HTTP Response. |
static void |
SerializationUtility.serializeRCToBrowser(RowCollection pRowCollection,
HttpServletResponse pResponse)
Serializes a RowCollection to the specified HTTP Response. |
static void |
SerializationUtility.serializeRCToFile(RowCollection pRowCollection,
java.lang.String pFileName)
Serializes a RowCollection to the specified file. |
static java.lang.String |
RowClassGenerator.generateRowClass(RowCollection pRC,
RowClassProperties pProps)
Generates a subclass of the Row class. |
static java.lang.String |
RowClassGenerator.generateRowInterface(RowCollection pRC,
RowInterfaceProperties pProps)
Generates an interface based on a Database Row. |
static java.lang.String |
DataEngineManager.getSelectedRowsKey(RowCollection rc)
Gets the key used to store the selected rows of the RowCollection |
static void |
DataEngineManager.setCurrentRowCollection(RowCollection rc,
HttpServletRequest request)
Sets the current RowCollection in the request. |
Uses of RowCollection in planetj.dataengine.action |
Methods in planetj.dataengine.action that return RowCollection | |
RowCollection |
RowCollectionActionRequest.getRowCollection(HttpServletRequest request)
Get's the RowCollection for this RowCollection action request. |
RowCollection |
NamedRowCollectionAction.getRowCollection()
Gets the RowCollection tied to this action. |
Methods in planetj.dataengine.action with parameters of type RowCollection | |
abstract java.lang.Object |
RowCollectionAction.handleRowCollectionAction(RowCollection rc,
ExecutingContext ec)
Deprecated. Subclasses need to provide logic to handle the action they wish to perform. |
java.lang.Object |
NamedRowCollectionAction.handleRowCollectionAction(RowCollection rc,
java.lang.Object o,
ExecutingContext ec)
Subclasses need to provide logic to handle the action they wish to perform. |
java.lang.StringBuffer |
ConvertToExcel.convert(RowCollection rc)
ConvertToExcel constructor comment. |
java.lang.StringBuffer |
ConvertToExcel.convert(RowCollection rc,
java.lang.StringBuffer buffer)
ConvertToExcel constructor comment. |
Constructors in planetj.dataengine.action with parameters of type RowCollection | |
RowCollectionActionRequest(AbstractAction action,
RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
|
|
RowCollectionAction(RowCollection actionObject)
Deprecated. |
|
RowActionRequest(AbstractAction action,
RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
|
|
NamedRowCollectionAction(java.lang.String actionName,
RowCollection actionObject)
|
Uses of RowCollection in planetj.dataengine.action.paging |
Methods in planetj.dataengine.action.paging with parameters of type RowCollection | |
java.lang.Object |
PagingAction.handleRowCollectionAction(RowCollection rc,
java.lang.Object o,
ExecutingContext ec)
|
Constructors in planetj.dataengine.action.paging with parameters of type RowCollection | |
PagingActionRequest(PagingAction action,
RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
Create a new PageRequest for the given RC |
|
PagingAction(RowCollection rc)
|
Uses of RowCollection in planetj.dataengine.application |
Methods in planetj.dataengine.application that return RowCollection | |
static RowCollection |
DataEngineApplicationBuilderServlet.getApplicationsRC(HttpServletRequest req)
Gets the user's Applications |
protected RowCollection |
ApplicationManager.getApplications(java.lang.String pSystemAlias,
java.lang.String pLibraryName,
java.lang.String pTableName,
java.util.List pColumnNames,
IUser pUser)
Returns A RowCollection of all Application objects Creation date: (3/25/2002 1:48:24 PM) |
protected RowCollection |
ApplicationManager.getApplications(java.lang.String pSystemAlias,
java.lang.String pLibraryName,
java.lang.String pTableName,
java.util.List pColumnNames,
IUser pUser,
java.util.List orderByNames)
Returns A RowCollection of all Application objects Creation date: (3/25/2002 1:48:24 PM) |
RowCollection |
ApplicationManager.getApplications(java.lang.String pSystemAlias,
java.util.List pColumnNames,
IUser pUser)
Returns A RowCollection of all Application objects |
RowCollection |
ApplicationManager.getApplications(java.lang.String pSystemAlias,
java.util.List pColumnNames,
IUser pUser,
java.util.List orderByColumns)
Returns A RowCollection of all Application objects |
RowCollection |
Application.getOperations()
Returns all the SQL Opps for this App. |
RowCollection |
Application.getOperations(java.lang.String opSetName,
ExecutingContext executingContext)
Gets this application's operations belonging to the given operation set name. |
RowCollection |
Application.getOperations(ExecutingContext executingContext)
Gets this application's operations. |
RowCollection |
Application.getOperationsByUsageId(int usageId,
ExecutingContext executingContext)
Gets this application's operations for the given usage id. |
RowCollection |
Application.getSQLOperations()
Deprecated. replaced with getOperations() |
RowCollection |
Application.getSQLOperations(ExecutingContext executingContext)
Deprecated. replaced with getOperations(ExecutingContext) |
Uses of RowCollection in planetj.dataengine.cache |
Methods in planetj.dataengine.cache that return RowCollection | |
protected RowCollection |
DataEngineCache.get(SQLContext key)
Gets a RowCollection out of the cache, based on the SQLContext. |
RowCollection |
DataEngineCache.getCachedRowCollection(SQLContext context)
Allow Cached RowCollections to decide if they can be used for a query. |
protected RowCollection |
DataEngineCache.remove(SQLContext key)
Removes a RowCollection from the cache, based on the SQLContext. |
RowCollection |
CacheManager.get(SQLContext key)
Gets a RowCollection out of the cache, based on the SQLContext. |
RowCollection |
CacheManager.remove(SQLContext key)
Removes a RowCollection from the cache, based on the SQLContext. |
static RowCollection |
CacheInspector.getCacheDetail(java.lang.String alias)
Creates and returns a derived RowCollection containing information about the current cache. |
static RowCollection |
CacheInspector.getAllCacheDetailSummary()
Creates and returns a derived RowCollection containing information about the current cache for all systems. |
Methods in planetj.dataengine.cache with parameters of type RowCollection | |
protected void |
DataEngineCache.put(SQLContext key,
RowCollection results)
Puts a RowCollection in the cache, keyed by the SQLContext. |
void |
CacheManager.put(SQLContext key,
RowCollection results)
Puts a RowCollection in the cache, keyed by the SQLContext. |
static void |
CacheInspector.addSystemCacheDetailsRow(RowCollection detailsRC,
RowCollection cacheSource)
Creates new cache detail rows for the given dataengine cache. |
static void |
CacheInspector.addSystemCacheSummaryRow(RowCollection rc,
DataEngineCache deCache)
Creates new cache detail rows for the given dataengine cache. |
Uses of RowCollection in planetj.dataengine.email |
Subclasses of RowCollection in planetj.dataengine.email | |
class |
EmailRowCollection
This class servers as a convience class for a RowCollection that contains email functionality. |
Uses of RowCollection in planetj.dataengine.email.html |
Subclasses of RowCollection in planetj.dataengine.email.html | |
class |
HTMLEmailRowCollection
This class servers as a convience class for a RowCollection that contains email functionality. |
Uses of RowCollection in planetj.dataengine.messageboard |
Methods in planetj.dataengine.messageboard that return RowCollection | |
RowCollection |
MessageRow.getChildren()
|
Uses of RowCollection in planetj.dataengine.operation |
Subclasses of RowCollection in planetj.dataengine.operation | |
class |
OperationBuilderRC
|
Methods in planetj.dataengine.operation that return RowCollection | |
RowCollection |
OperationManager.getAssociationSQLOperations(java.lang.String systemAlias,
int ownerId,
java.util.List columnNames)
Deprecated. replaced by getAssociationOperations(String, int, List) |
RowCollection |
OperationManager.getChildren(int parentId,
java.lang.String metaDataAlias)
Gets all children Operation's from the given system alias and for the given Operation id. |
RowCollection |
OperationManager.getDependants(int dependsOnId,
java.lang.String metaDataAlias)
Gets all dependant Operation's from the given system alias and for the given Operation id. |
RowCollection |
OperationManager.getOperations(Application application,
java.util.List columnNames,
ExecutingContext executingContext)
Gets all Operations for the given Application. |
RowCollection |
OperationManager.getOperations(Application application,
java.util.List columnNames,
java.lang.String opSetName,
ExecutingContext executingContext)
Gets all Operations for the given Application that have the given operation set name. |
RowCollection |
OperationManager.getPossibleValueSQLOperations(java.lang.String systemAlias,
int ownerId,
java.util.List columnNames)
Get possible value SQLOperations for the given owner. |
RowCollection |
OperationManager.getSQLOperations(java.lang.String systemAlias,
int ownerId,
int type,
java.util.List columnNames)
Get SQLOperations with the specified type and the given owner. |
protected RowCollection |
OperationManager.getSQLOperations(java.lang.String pTableName,
Application pApplication,
java.util.List pColumnNames)
Deprecated. Temporarily deprecated to find references. WK. |
RowCollection |
OperationManager.getSQLOperations(Application pApplication,
java.util.List pColumnNames)
Deprecated. Temporarily deprecated to find references. WK. |
RowCollection |
OperationManager.getSQLOperations(Application application,
java.util.List columnNames,
ExecutingContext executingContext)
Deprecated. replaced with getOperations(Application, List, ExecutingContext) |
RowCollection |
OperationManager.getAssociationOperations(java.lang.String metaDataAlias,
int ownerId,
java.util.List columnNames)
Get association operations for the given owner and meta data system. |
RowCollection |
OperationManager.getAuthorizationOperations(java.lang.String systemAlias,
int ownerId,
java.util.List columnNames)
Get association SQLOperations for the given owner. |
RowCollection |
OperationManager.getUserAuthenticationListOperations(java.lang.String systemAlias,
int ownerId,
java.util.List columnNames)
Get authentication SQLOperations for the given owner. |
RowCollection |
Operation.getChildren()
Gets the children Operations of this Operation (may be null if Operation does not have any children) |
RowCollection |
Operation.getDependants()
Gets the dependant Operations of this Operation (may be null if Operation does not have any children) |
Uses of RowCollection in planetj.dataengine.security |
Methods in planetj.dataengine.security that return RowCollection | |
static RowCollection |
DESecurityManager.getAuthorizations(IUser user)
Check to see if the given principal is allowed to view the given operation. |
static RowCollection |
DESecurityManager.secureRowCollection(IUser user,
RowCollection rc)
Gets a RowCollection stripped of any secured objects from the given RowCollection that the IUser does not have permission to. |
RowCollection |
DEGroup.getDEUsers()
|
static RowCollection |
DEGroup.getDEUsers(java.lang.String system,
int owner,
int group)
|
RowCollection |
DEAuthorization.getDEGroups()
|
static RowCollection |
DEAuthorization.getDEGroups(java.lang.String system,
int owner,
int authorization)
|
Methods in planetj.dataengine.security with parameters of type RowCollection | |
static RowCollection |
DESecurityManager.secureRowCollection(IUser user,
RowCollection rc)
Gets a RowCollection stripped of any secured objects from the given RowCollection that the IUser does not have permission to. |
Uses of RowCollection in planetj.dataengine.theme |
Methods in planetj.dataengine.theme that return RowCollection | |
RowCollection |
ThemeManager.getThemes(java.lang.String metaDataAlias,
int ownerId,
java.util.List columnNames)
Gets a RowCollection of all Theme objects available to the specified owner. |
RowCollection |
ThemeManager.getThemes(java.lang.String metaDataAlias,
java.util.List columnNames)
Gets a RowCollection of all Theme objects available to all owners. |
protected RowCollection |
ThemeManager.getThemes(java.lang.String metaDataAlias,
java.lang.String tableName,
int ownerId,
java.util.List columnNames)
Gets a RowCollection of all Theme objects available to all owners. |
protected RowCollection |
ThemeManager.getThemes(java.lang.String metaDataAlias,
java.lang.String tableName,
java.util.List columnNames)
Gets a RowCollection of all Theme objects available to all owners. |
Uses of RowCollection in planetj.dataengine.workflow |
Subclasses of RowCollection in planetj.dataengine.workflow | |
class |
WorkFlowRowCollection
|
Uses of RowCollection in planetj.html |
Methods in planetj.html that return RowCollection | |
RowCollection |
HTMLTable.getRows()
Returns the rows (RowCollection) to the table has for populating its data. |
Methods in planetj.html with parameters of type RowCollection | |
java.lang.String |
SimpleHTMLSelect.generate(java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Generates HTML code for this HTMLSelect using the specified rows (RowCollection). |
static java.lang.StringBuffer |
HTMLTable.appendChartLinks(RowCollection rc,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Append links to view charts for given RowCollection. |
static java.lang.StringBuffer |
HTMLTable.appendPrintLink(RowCollection rc,
java.lang.String printURI,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
java.lang.StringBuffer |
HTMLTable.appendBody(RowCollection pRC,
java.util.List pFieldNames,
java.lang.StringBuffer html,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
|
java.lang.StringBuffer |
HTMLTable.appendHeader(RowCollection pRC,
java.util.List pFieldNames,
java.lang.StringBuffer html,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
|
java.lang.StringBuffer |
HTMLTable.appendMagicLinks(HttpServletRequest pRequest,
HttpServletResponse pResponse,
java.lang.StringBuffer html,
RowCollection pRC)
|
java.lang.StringBuffer |
HTMLTable.appendMagicRow(HttpServletRequest pRequest,
HttpServletResponse pResponse,
java.lang.StringBuffer html,
RowCollection pRC)
|
java.lang.StringBuffer |
HTMLTable.appendMagicRow(HttpServletRequest request,
HttpServletResponse response,
java.lang.StringBuffer html,
RowCollection rc,
boolean generatequicklinks)
|
protected java.lang.StringBuffer |
HTMLTable.appendMagicRowFunctions(boolean onTop,
HttpServletRequest request,
HttpServletResponse response,
java.lang.StringBuffer html,
RowCollection pRC)
|
protected java.lang.StringBuffer |
HTMLTable.appendMagicRowFunctions(HttpServletRequest request,
HttpServletResponse response,
java.lang.StringBuffer html,
RowCollection pRC)
Deprecated. Use the version which also takes in a boolean variable to indicate whether this row is on the top or bottom of the RC |
java.lang.StringBuffer |
HTMLTable.appendMagicRowFunctionsCell(HttpServletRequest pRequest,
HttpServletResponse pResponse,
java.lang.StringBuffer html,
RowCollection pRC)
|
java.lang.StringBuffer |
HTMLTable.appendNextPreviousLinks(boolean useExtraText,
HttpServletRequest request,
HttpServletResponse response,
java.lang.StringBuffer html,
RowCollection pRC)
Deprecated. - paging changed, use appendPagingLinks(RowCollection, StringBuffer, HttpServletRequest, HttpServletResponse) |
protected java.lang.StringBuffer |
HTMLTable.appendRemoveAllLink(RowCollection rc,
java.lang.StringBuffer sb,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
Deprecated. You should pass in the RC |
java.lang.String |
HTMLTable.generateTable(RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
Generates HTML code for this HTML table using the specified rows (RowCollection). |
java.lang.String |
HTMLTable.generateTable(RowCollection rc,
java.util.List names,
HttpServletRequest request,
HttpServletResponse response)
Generates HTML code for this HTML table using the given RowCollection. |
boolean |
HTMLTable.hasQuickLinks(RowCollection rc,
HttpServletRequest request)
Check whether or not there are any quick links. |
boolean |
HTMLTable.hasRowFunctions(RowCollection rc,
HttpServletRequest request)
|
void |
HTMLTable.prepareActions(RowCollection rc,
ExecutingContext ec)
Creates the actions that will be generated with this table. |
void |
HTMLTable.setRows(RowCollection rows)
Sets the rows (RowCollection) to be used in populating the data for the table. |
void |
HTMLTable.setRowsAndProperties(RowCollection rc,
HttpServletRequest request)
Sets the rows (RowCollection) to be used in populating the data for the table. |
static java.lang.String |
HTMLGenerator.generateAssociationLinks(RowCollection rowCol,
HttpServletRequest req,
HttpServletResponse resp)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(java.lang.String id,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static boolean |
HTMLExtractor.extractAndValidateTableData(RowCollection rc,
HttpServletRequest request)
Extracts information off the HttpServletRequest out of a table and puts it in the given RowCollection's Rows. |
static void |
HTMLExtractor.extractTableData(java.lang.String rcKey,
RowCollection rc,
HttpServletRequest request)
Extracts information off the HttpServletRequest out of a table and puts it in the given RowCollection's Rows. |
static void |
HTMLExtractor.extractTableData(RowCollection rc,
HttpServletRequest request)
Extracts information off the HttpServletRequest out of a table and puts it in the given RowCollection's Rows. |
static java.util.List |
HTMLExtractor.getSelectedRows(RowCollection rc,
byte returnType,
HttpServletRequest request)
Retrieves the selected Rows from the HttpServletRequest. |
static java.util.List |
HTMLExtractor.getSelectedRows(RowCollection rc,
HttpServletRequest req)
Get the selected Rows from the request. |
static void |
HTMLExtractor.maintainSelection(RowCollection rc,
HttpServletRequest req)
Ensures the rows selections the user made will be maintained on the RC when it is rendered again on the next screen. |
static void |
HTMLExtractor.selectRow(Row row,
RowCollection rc,
HttpServletRequest req)
Sets the row as a currently selected row. |
static void |
HTMLExtractor.selectRows(java.util.List rows,
RowCollection rc,
HttpServletRequest req)
Adds the rows to the currently selected rows. |
static java.lang.StringBuffer |
FieldHTMLSelect.appendSelect(java.lang.String id,
int size,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
boolean multipleSelection,
RowCollection rowCol,
java.lang.String selectedVal,
java.lang.StringBuffer html,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
java.lang.String |
FieldHTMLSelect.generate(java.lang.String fldName,
java.lang.String attributes,
java.lang.String descFldName,
RowCollection rowCol)
Deprecated. |
java.lang.String |
FieldHTMLSelect.generate(java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
java.lang.String |
FieldHTMLSelect.generate(java.lang.String fldName,
java.lang.String attributes,
RowCollection rowCol)
Deprecated. |
java.lang.String |
FieldHTMLSelect.generate(java.lang.String fldName,
java.lang.String attributes,
RowCollection rowCol,
java.lang.String selVal)
Deprecated. |
Uses of RowCollection in planetj.magic |
Methods in planetj.magic that return RowCollection | |
RowCollection |
RowRequest.getRowCollection(HttpServletRequest request)
|
RowCollection |
RowReflectionRequest.getRowCollection(HttpServletRequest request)
Deprecated. |
RowCollection |
RowCollectionRequest.getRowCollection(HttpServletRequest request)
|
RowCollection |
CopyRCToTableRequest.getRowCollection(HttpServletRequest pRequest)
|
RowCollection |
AddRowToRCRequest.getRowCollection()
Gets the RC into which the row will be inserted |
RowCollection |
AbstractSelectionRequest.getSelectedRowCollection(HttpServletRequest request)
|
RowCollection |
AbstractMagicRequest.getBaseRowCollection()
Get the based on RowCollection for this Request. |
Methods in planetj.magic with parameters of type RowCollection | |
static void |
XLSRequest.populateXlsFile(int sheetIndex,
org.apache.poi.hssf.usermodel.HSSFWorkbook wb,
RowCollection rc)
|
static java.lang.StringBuffer |
PageRequest.appendText(RowCollection rc,
HTMLTable table,
boolean useText,
java.lang.StringBuffer html,
HttpServletRequest req)
Appends text for the first, previous, next, or last link on an HTMLTable |
void |
IMagicRequest.setBaseRowCollection(RowCollection pBaseRowCollection)
Set the based on RowCollection for this Request. |
void |
AddRowToRCRequest.setRowCollection(RowCollection collection)
Sets the RC into which the row will be inserted |
void |
AbstractMagicRequest.setBaseRowCollection(RowCollection pBaseRowCollection)
Set the based on RowCollection for this Request. |
Constructors in planetj.magic with parameters of type RowCollection | |
XLSRequest(HttpServletRequest request,
HttpServletResponse response,
RowCollection rc)
XLSRequest constructor. |
|
UpdateRequest(RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
UpdateRequest constructor comment. |
|
RowRequest(Row row,
RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
Create a new row request for the given Row |
|
RowRequest(Row row,
RowCollection rc,
java.lang.String uri,
HttpServletRequest request,
HttpServletResponse response)
Create a new row request for the given Row |
|
RowCollectionRequest(RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
Create a object which gets stored in the session that has knowledge of the given RowCollection to allow some action to be carried out using the RowCollection. |
|
RemoveAllRequest(java.lang.String pId,
RowCollection pRC,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
Creates a new RemoveAllRequest |
|
RefreshRequest(RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
RefreshRequest constructor. |
|
PageRequest(RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
Create a new PageRequest for the given RC |
|
MSAccessRequest(java.lang.String pId,
HttpServletRequest req,
HttpServletResponse res,
RowCollection rc)
MSAccessRequest constructor comment. |
|
InsertRowCollectionRequest(RowCollection rc,
HttpServletRequest request,
HttpServletResponse response)
|
Uses of RowCollection in planetj.output.excel |
Methods in planetj.output.excel with parameters of type RowCollection | |
void |
POIExcelGenerator.setRowsInWorkSheet(RowCollection rc,
org.apache.poi.hssf.usermodel.HSSFWorkbook wb,
int sheetIndex,
ExcelContext excel)
This method will place data from the RowCollection into a POI workbook at the specified sheet. |
Uses of RowCollection in planetj.possiblevalues |
Methods in planetj.possiblevalues that return RowCollection | |
RowCollection |
UserAuthenticationListOperationsPV.getPossibleValues(Field field)
Gets a RowCollection of Possible Value Authentciation Operations & Authorization Operations. |
RowCollection |
ThemesPV.getPossibleValues(Field field)
Gets a RowCollection of Themes for the given theme id Field's Row. |
RowCollection |
PossibleValueSQLOperationsPV.getPossibleValues(Field field)
Gets a RowCollection of Possible Value SQLOperations for the given Field's Row's owner. |
RowCollection |
IPossibleValueGetter.getPossibleValues(Field pField)
It is recommended that your possible value class use the DataEngine.getRows() methods to return a RowCollection. |
RowCollection |
DistinctPV.getPossibleValues(Field pField)
It is recommended that your possible value class use the DataEngine.getRows() methods to return a RowCollection. |
RowCollection |
AuthorizationOperationsPV.getPossibleValues(Field field)
Gets a RowCollection of Possible Value Authorization Operations. |
RowCollection |
AssociationSQLOperationsPV.getPossibleValues(Field field)
Gets a RowCollection of Possible Value SQLOperations for the given Field's Row's owner. |
RowCollection |
AbstractPV.getPossibleValues(Field field)
It is recommended that your possible value class use the DataEngine.getRows() methods to return a RowCollection. |
Uses of RowCollection in planetj.wow.update |
Methods in planetj.wow.update that return RowCollection | |
static RowCollection |
WOWUpdateManager.getAppliedWOWUpdates()
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |