|
|||||||||||
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. |
com.jrefinery.data.CategoryDataset |
ChartManager.getCategoryDataset(RowCollection rc,
ChartSpecificationPG chartSpecs)
Creates a CategoryDataset using the given chart specifications and data. |
ChartSpecificationPG |
ChartManager.getChartSpecifications(String chartId,
RowCollection rc)
Convience method to retrieve a chart specification property group that has the given chart id from a given RowCollection. |
Constructors in planetj.chart with parameters of type RowCollection | |
ChartRequest(String id,
RowCollection rc,
String chartId,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
ChartRequest constructor |
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 |
Table.getAssociations()
Return a RowCollection of FieldDescriptorRows for this Table that have a Associations defined for them. |
RowCollection |
SQLContext.getRowCollection()
Gets the RowCollection object into which retrieved rows will be inserted. |
RowCollection |
RowCollection.cloneRowCollection()
Untested method. |
static RowCollection |
RowCollection.createRowCollection(SQLContext context)
Creates a new RowCollection object based on the information in a SQLContext. |
RowCollection |
RowCollection.filter(String fieldName,
int comparison,
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(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. |
RowCollection |
RowCollection.prepareForDisplay(ExecutingContext ec)
This method is intended for subclass to override and provide their own functionality. |
RowCollection |
RowCollection.prepareForResults(ExecutingContext pEc)
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(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(String[] pColumnNames,
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.getRowCollection()
Gets the first RowCollection this Row is contained in. |
RowCollection |
IAssociatedData.getAssociatedRows(String pLib,
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(String systemURL,
String sqlString)
Return a RowCollection using the default system Connection. |
static RowCollection |
DataEngine.getRows(String systemURL,
String sqlString,
Class rowSubClass)
Return a RowCollection using a connection from the specified system url. |
static RowCollection |
DataEngine.getRows(Connection conn,
String sqlString)
Return a RowCollection using the given Connection and sql String. |
static RowCollection |
DataEngine.getRows(Connection conn,
String sqlString,
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. |
Methods in planetj.database with parameters of type RowCollection | |
static String |
SQLGenerator.generateCreateTableStatementFromRowCollection(Table pTable,
RowCollection rc)
Generates a CREATE TABLE Statement that constructs a table based on the specified Table |
SQLContext |
SQLContext.setRowCollection(RowCollection newRowCollection)
Sets the RowCollection object into which retrieved rows will be inserted. |
static Row |
Row.create(RowCollection pRowCollection)
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. |
void |
Row.add(RowCollection pRowCollection)
Adds the given RowCollection to the List of RowCollection's this Row belongs to. |
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 void |
DataEngine.copyRowCollectionToTable(Connection connection,
Table copyToTable,
RowCollection rc)
This method copies a row collection to the specified table. |
static void |
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 |
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 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 fld)
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(Connection pConnection,
Table pTable)
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.getAssociationsForTable(Table pTable)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(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,
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(String[] pColumnNames,
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 |
Methods in planetj.database.possiblevalues that return RowCollection | |
static RowCollection |
PossibleValueManager.getConfigProperties(String metaDataSystemAlias,
String key,
String[] orderByColumnNames,
int ownerId)
This will return a RowCollection fo PossibleValues with the givin key @ pKey |
static RowCollection |
PossibleValueManager.getPossibleValues(String metaDataSystemAlias,
String key,
String[] orderByColumnNames)
This will return a RowCollection fo PossibleValues with the givin key @ pKey |
static RowCollection |
PossibleValueManager.getPossibleValues(String metaDataSystemAlias,
String key,
String[] orderByColumnNames,
int ownerId)
This will return a RowCollection fo PossibleValues with the givin key @ pKey |
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 with parameters of type RowCollection | |
static int |
ReportBreakRowCollection.getReportRowCount(RowCollection rc)
Gets the number of ReportBreakRows currently contained in the RowCollection. |
ReportBreakRow |
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(javax.servlet.http.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(javax.servlet.http.HttpServletRequest pRequest,
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(String pFileName)
Deserializes the RowCollection located in the specified file. |
static RowCollection |
SerializationUtility.deserialize(javax.servlet.http.HttpServletRequest pRequest)
Deserializes the RowCollection located in HttpServletResponse. |
static RowCollection |
DataEngineManager.getCurrentRowCollection(javax.servlet.http.HttpServletRequest request)
Gets the current RowCollection from the request. |
static RowCollection |
DataEngineManager.getRowCollection(Operation operation,
javax.servlet.http.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,
javax.servlet.http.HttpServletRequest request)
Deprecated. RowCollection's should now be set as request page attributes HttpRequestManager.setPageAttribute(String, Object, HttpServletRequest) |
static void |
SerializationUtility.serializeRCToApplet(RowCollection pRowCollection,
javax.servlet.http.HttpServletResponse pResponse)
Serializes a RowCollection to the specified HTTP Response. |
static void |
SerializationUtility.serializeRCToBrowser(RowCollection pRowCollection,
javax.servlet.http.HttpServletResponse pResponse)
Serializes a RowCollection to the specified HTTP Response. |
static void |
SerializationUtility.serializeRCToFile(RowCollection pRowCollection,
String pFileName)
Serializes a RowCollection to the specified file. |
static String |
RowClassGenerator.generateRowClass(RowCollection pRC,
RowClassProperties pProps)
Generates a subclass of the Row class. |
static String |
RowClassGenerator.generateRowInterface(RowCollection pRC,
RowInterfaceProperties pProps)
Generates an interface based on a Database Row. |
Uses of RowCollection in planetj.dataengine.actions |
Methods in planetj.dataengine.actions with parameters of type RowCollection | |
StringBuffer |
ConvertToExcel.convert(RowCollection rc)
ConvertToExcel constructor comment. |
StringBuffer |
ConvertToExcel.convert(RowCollection rc,
StringBuffer buffer)
ConvertToExcel constructor comment. |
Uses of RowCollection in planetj.dataengine.application |
Methods in planetj.dataengine.application that return RowCollection | |
RowCollection |
ApplicationManager.getApplications(String pSystemAlias,
List pColumnNames,
IUser pUser)
Returns A RowCollection of all Application objects |
RowCollection |
ApplicationManager.getApplications(String pSystemAlias,
List pColumnNames,
IUser pUser,
List orderByColumns)
Returns A RowCollection of all Application objects |
RowCollection |
Application.getOperations()
Returns all the SQL Opps for this App. |
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 | |
RowCollection |
DataEngineCache.getCachedRowCollection(SQLContext context)
Allow Cached RowCollections to decide if they can be used for a query. |
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(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 | |
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.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 |
Methods in planetj.dataengine.operation that return RowCollection | |
RowCollection |
OperationManager.getAssociationSQLOperations(String systemAlias,
int ownerId,
List columnNames)
Deprecated. replaced by getAssociationOperations(String, int, List) |
RowCollection |
OperationManager.getChildren(int parentId,
String metaDataAlias)
Gets all children Operation's from the given system alias and for the given Operation id. |
RowCollection |
OperationManager.getDependants(int dependsOnId,
String metaDataAlias)
Gets all dependant Operation's from the given system alias and for the given Operation id. |
RowCollection |
OperationManager.getOperations(Application application,
List columnNames,
ExecutingContext executingContext)
Gets all Operations for the given Application. |
RowCollection |
OperationManager.getPossibleValueSQLOperations(String systemAlias,
int ownerId,
List columnNames)
Get possible value SQLOperations for the given owner. |
RowCollection |
OperationManager.getSQLOperations(String systemAlias,
int ownerId,
int type,
List columnNames)
Get SQLOperations with the specified type and the given owner. |
RowCollection |
OperationManager.getSQLOperations(Application pApplication,
List pColumnNames)
Deprecated. Temporarily deprecated to find references. WK. |
RowCollection |
OperationManager.getSQLOperations(Application application,
List columnNames,
ExecutingContext executingContext)
Deprecated. replaced with getOperations(Application, List, ExecutingContext) |
RowCollection |
OperationManager.getAssociationOperations(String metaDataAlias,
int ownerId,
List columnNames)
Get association operations for the given owner and meta data system. |
RowCollection |
OperationManager.getAuthorizationOperations(String systemAlias,
int ownerId,
List columnNames)
Get association SQLOperations for the given owner. |
RowCollection |
OperationManager.getUserAuthenticationListOperations(String systemAlias,
int ownerId,
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(String system,
int owner,
int group)
|
RowCollection |
DEAuthorization.getDEGroups()
|
static RowCollection |
DEAuthorization.getDEGroups(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.test |
Subclasses of RowCollection in planetj.dataengine.test | |
class |
WKTestRowCollection
Insert the type's description here. |
Methods in planetj.dataengine.test that return RowCollection | |
RowCollection |
TestHTMLTable.getRows()
Returns the rows (RowCollection) to the table has for populating its data. |
RowCollection |
JEFilterTests.testComplexFilters()
|
RowCollection |
JEFilterTests.testComplexFiltersChild1AAdd1()
|
RowCollection |
JEFilterTests.testComplexFiltersChild1AAdd2()
|
RowCollection |
JEFilterTests.testComplexFiltersChild1Add1()
|
RowCollection |
JEFilterTests.testComplexFiltersChild1Add2()
|
RowCollection |
JEFilterTests.testComplexFiltersChild2Add1()
|
RowCollection |
JEFilterTests.testComplexFiltersChild2Add2()
|
RowCollection |
JEFilterTests.testComplexFiltersParentAdd1()
|
RowCollection |
JEFilterTests.testComplexFiltersParentAdd2()
|
Methods in planetj.dataengine.test with parameters of type RowCollection | |
String |
TestHTMLTable.generate(RowCollection rows)
Generates HTML code for this HTML table using the specified rows (RowCollection). |
String |
TestHTMLTable.generate(RowCollection rows,
String[] fldNames)
Generates HTML code for this HTML table using the specified rows (RowCollection). |
String |
TestHTMLTable.generate(RowCollection rows,
String[] fldNames,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp)
Generates HTML code for this HTML table using the specified rows (RowCollection). |
void |
TestHTMLTable.setRows(RowCollection rows)
Sets the rows (RowCollection) to be used in populating the data for the table. |
void |
JERowTests.deleteKy(RowCollection rc,
int concurrency)
|
void |
JERowTests.updateRowsSetKysPassword(RowCollection rc,
String newPwd,
int concurrency)
|
void |
JERowTests.updateRowsSetMyPassword(RowCollection rc,
String newPwd,
int concurrency)
|
void |
JEFilterTests.displayAllRowCollections(RowCollection rc)
|
void |
BaseTestClass.displayRowCollection(RowCollection rc)
|
Uses of RowCollection in planetj.dataengine.theme |
Methods in planetj.dataengine.theme that return RowCollection | |
RowCollection |
ThemeManager.getThemes(String metaDataAlias,
int ownerId,
List columnNames)
Gets a RowCollection of all Theme objects available to the specified owner. |
RowCollection |
ThemeManager.getThemes(String metaDataAlias,
List columnNames)
Gets a RowCollection of all Theme objects available to all owners. |
Uses of RowCollection in planetj.dataengine.webservices |
Methods in planetj.dataengine.webservices that return RowCollection | |
static RowCollection |
DistributedObjectUtility.requestRowCollection(URL sourceURL)
Must specify where to receive the RowCollection from and where to send it to if any actions are to occur on it. |
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 | |
String |
SimpleHTMLSelect.generate(String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Generates HTML code for this HTMLSelect using the specified rows (RowCollection). |
StringBuffer |
HTMLTable.appendBody(RowCollection pRC,
List pFieldNames,
StringBuffer html,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse)
|
static StringBuffer |
HTMLTable.appendChartLinks(RowCollection rc,
StringBuffer html,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Append links to view charts for given RowCollection. |
StringBuffer |
HTMLTable.appendHeader(RowCollection pRC,
List pFieldNames,
StringBuffer html,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse)
|
StringBuffer |
HTMLTable.appendMagicLinks(javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse,
StringBuffer html,
RowCollection pRC)
|
StringBuffer |
HTMLTable.appendMagicRow(javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse,
StringBuffer html,
RowCollection pRC)
|
StringBuffer |
HTMLTable.appendMagicRow(javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse,
StringBuffer html,
RowCollection pRC,
boolean generatequicklinks)
|
StringBuffer |
HTMLTable.appendMagicRowFunctions(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
StringBuffer html,
RowCollection pRC)
|
StringBuffer |
HTMLTable.appendNextPreviousLinks(boolean useExtraText,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse,
StringBuffer html,
RowCollection pRC)
Appends next and previous rows links to the given StringBuffer. |
static StringBuffer |
HTMLTable.appendPrintLink(RowCollection rc,
String printURI,
StringBuffer html,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
String |
HTMLTable.generateTable(javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse,
RowCollection pRC,
List pFieldNames)
Deprecated. Replaced with generateTable(RowCollection, List, HttpServletRequest, HttpServletResponse) |
String |
HTMLTable.generateTable(RowCollection rc,
List names,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Generates HTML code for this HTML table using the given RowCollection. |
String |
HTMLTable.generateTable(RowCollection rc,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Generates HTML code for this HTML table using the specified rows (RowCollection). |
void |
HTMLTable.setRows(RowCollection rows)
Sets the rows (RowCollection) to be used in populating the data for the table. |
void |
HTMLTable.setRowsAndProperties(RowCollection rc,
javax.servlet.http.HttpServletRequest request)
Sets the rows (RowCollection) to be used in populating the data for the table. |
static String |
HTMLGenerator.generateAssociationLinks(RowCollection rowCol,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(String id,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(String id,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(String id,
String attributes,
String fldName,
RowCollection rowCol,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(String id,
String attributes,
String fldName,
RowCollection rowCol,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(Field fld,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(Field fld,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(Field fld,
String attributes,
String fldName,
RowCollection rowCol,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateComboBox(Field fld,
String attributes,
String fldName,
RowCollection rowCol,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
String selectedVal,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
RowCollection rowCol,
int size,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
RowCollection rowCol,
int size,
String selectedVal,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
RowCollection rowCol,
int size,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(String id,
String attributes,
String fldName,
RowCollection rowCol,
int size,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
String selectedVal,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
int size,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
RowCollection rowCol,
int size,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
RowCollection rowCol,
int size,
String selectedVal,
int selectionMode,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
RowCollection rowCol,
int size,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static String |
HTMLGenerator.generateList(Field fld,
String attributes,
String fldName,
RowCollection rowCol,
int size,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Returns a String for a HTML list. |
static void |
HTMLExtractor.extractTableData(String rcKey,
RowCollection rc,
javax.servlet.http.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,
javax.servlet.http.HttpServletRequest request)
Extracts information off the HttpServletRequest out of a table and puts it in the given RowCollection's Rows. |
static StringBuffer |
FieldHTMLSelect.appendSelect(String id,
int size,
String attributes,
String fldName,
String dspFldName,
boolean multipleSelection,
RowCollection rowCol,
String selectedVal,
StringBuffer html,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
String |
FieldHTMLSelect.generate(String fldName,
String attributes,
String descFldName,
RowCollection rowCol)
Deprecated. |
String |
FieldHTMLSelect.generate(String attributes,
String fldName,
String dspFldName,
RowCollection rowCol,
String selectedVal,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Deprecated. |
String |
FieldHTMLSelect.generate(String fldName,
String attributes,
RowCollection rowCol)
Deprecated. |
String |
FieldHTMLSelect.generate(String fldName,
String attributes,
RowCollection rowCol,
String selVal)
Deprecated. |
Uses of RowCollection in planetj.magic |
Methods in planetj.magic that return RowCollection | |
RowCollection |
RowRequest.getRowCollection(javax.servlet.http.HttpServletRequest request)
|
RowCollection |
RowReflectionRequest.getRowCollection(javax.servlet.http.HttpServletRequest request)
|
RowCollection |
RowCollectionRequest.getRowCollection(javax.servlet.http.HttpServletRequest pRequest)
|
RowCollection |
CopyRCToTableRequest.getRowCollection(javax.servlet.http.HttpServletRequest pRequest)
|
RowCollection |
AbstractSelectionRequest.getSelectedRowCollection(javax.servlet.http.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 StringBuffer |
PageRequest.appendText(RowCollection rc,
HTMLTable table,
boolean useText,
StringBuffer html,
javax.servlet.http.HttpServletRequest req)
Appends text for the first, previous, next, or last link on an HTMLTable |
void |
AbstractMagicRequest.setBaseRowCollection(RowCollection pBaseRowCollection)
Set the based on RowCollection for this Request. |
Constructors in planetj.magic with parameters of type RowCollection | |
XLSRequest(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
RowCollection rc)
XLSRequest constructor. |
|
RowCollectionRequest(String pId,
RowCollection pRC,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse)
Creates a new RowCollectionRequest |
|
RowCollectionRequest(RowCollection rc,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.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(String pId,
RowCollection pRC,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse)
Creates a new RemoveAllRequest |
|
PrintRowRequest(String pId,
RowCollection pRC,
String pRowId,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse)
Creates a new PrintRowRequest |
|
PrintRequest(String pId,
RowCollection pRC,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse)
Creates a new PrintRequest |
|
MSAccessRequest(String pId,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res,
RowCollection rc)
MSAccessRequest constructor comment. |
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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |