Uses of Class
planetj.database.Row

Packages that use Row
planetj.database   
planetj.database.connection   
planetj.database.field   
planetj.database.fielddescriptors   
planetj.database.filter   
planetj.database.flatfile   
planetj.database.possiblevalues   
planetj.database.report   
planetj.dataengine   
planetj.dataengine.application   
planetj.dataengine.autorun   
planetj.dataengine.cache   
planetj.dataengine.display   
planetj.dataengine.email   
planetj.dataengine.email.html   
planetj.dataengine.messageboard   
planetj.dataengine.operation   
planetj.dataengine.parameter   
planetj.dataengine.security   
planetj.dataengine.security.http   
planetj.dataengine.sqloperation   
planetj.dataengine.sqloperation.http   
planetj.dataengine.test   
planetj.dataengine.theme   
planetj.dataengine.webservices   
planetj.html   
planetj.magic   
planetj.processes.logon   
 

Uses of Row in planetj.database
 

Subclasses of Row in planetj.database
static class Row.SpacingRow
           
 

Methods in planetj.database that return Row
 Row Table.getRow(RowKey rowKey)
          Reads a row from the this table in the database with the specified key
 Row SQLContext.getSourceRow()
          If this SQLContext is an update, insert, or delete statement which pertains to one specific row, then this method gets that row.
 Row SQLContext.getUsageIdRow()
          Gets the row whose data should be used to replace literal usage id's in the SQL (indicated with a ##?)
 Row RowKey.getRow()
          Gets the row whose key this object represents
 Row RowCollection.firstRow()
          Gets the first Row, return null if no rows exists.
 Row RowCollection.getRow(int i)
          Gets the Row with the specified index out of this RowCollection.
 Row RowCollection.newRow()
          Creates, adds, and returns a new Row from this RowCollection.
 Row RowCollection.newRow(int index)
          Creates, adds, and returns a new Row from this RowCollection.
 Row RowCollection.removeRow(int i)
          Removes the row with the specified index from this RowCollection (the first row has an index of 0).
 Row RowCollection.setRow(int index, Row row)
          Replaces the row at the specified position in this list with the specified row (optional operation).
static Row Row.create(Class rowSubClass)
          Create and return a new Row of the given Class type using the given ExecutingContext to allow for security and/or personalization.
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.
static Row Row.create(Table table)
          Create and return a new Row of class Row.class and initializes the row with all of the tables fields.
static Row Row.create(Table table, boolean initializeRow)
          Create and return a new Row of class Row.class and initializes the row with all of the tables fields if specified.
static Row Row.create(Table table, boolean initializeRow, ExecutingContext ec)
          Create and return a new Row and also set its Table.
static Row Row.create(Table table, Class rowSubClass)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, boolean initializeRow)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, boolean initializeRow, ExecutingContext pExecutingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, ExecutingContext executingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, List fieldNames, boolean initializeRow)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, Class rowSubClass, List fieldNames, boolean initializeRow, ExecutingContext pExecutingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, List fieldNames, boolean initialize)
          Create and return a new Row for the given table and field names.
static Row Row.create(Table table, List fieldNames, boolean initializeRow, ExecutingContext pExecutingContext)
          Create and return a new Row of the given Class type and also set its Table.
static Row Row.create(Table table, List names, ExecutingContext ec)
          Create and return a new Row and also set its Table.
 Row Row.cloneRow()
          Clones this Row object.
 Row Row.copy(boolean pFullCopy)
          Copy this Row.
 Row Row.createRow(Row pDefaultRow)
          Creates a new Row.
 Row Row.getCompleteRow()
          Gets a complete Row for this Row containing all of its Fields in the database.
 Row Row.getCompleteRow(Connection pConnection)
          Gets a complete Row for this Row containing all of its Fields in using the specified connection if needed.
 Row Row.getDatabaseRow(Connection conn)
          Rereads and returns this row as it exists in the database, or null if it doesn't exist in the database.
 Row Row.getDatabaseRow(Connection conn, boolean includeDerivedFields)
          Rereads and returns this row as it exists in the database, or null if it doesn't exist in the database.
 Row Row.prepareForDetails(ExecutingContext pEc)
          Gets the a proper Row for viewing this Rows details.
 Row Row.prepareFromFieldNames(List pNames)
          Gets the a proper Row for viewing this Rows details.
 Row Row.rollbackChanges()
          Undoes any changes that have been made to this Row since it was read from or written to the database.
 Row Row.statusChanged(Field pField, ExecutingContext ec)
          Invoked when a status change takes place on of this Row's fields.
 Row Row.transferDataTo(Class pNewRowClass)
          Transfers all the data in this Row into a different Row.
 Row Row.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
 Row IRowCreator.createRow(Row pDefaultRow)
          Creates a new Row.
 Row IAssociatedData.getAssociatedRow(String pLib, String pTableName)
          Deprecated. Get A Row Associated With This Row
 Row Field.getRow()
          Returns the Row this Field belongs to.
static Row DataEngine.getRow(SQLContext context)
          Retrieves the first row from the database based on the criteria in the SQLContext.
 

Methods in planetj.database with parameters of type Row
 void SQLContext.setRowValues(Row source, Row target)
          Provides values for all of this context's named parameters.
 void SQLContext.setRowValues(Row source, Row target)
          Provides values for all of this context's named parameters.
 void SQLContext.setSourceRow(Row newSourceRow)
          If this SQLContext is an update, insert, or delete statement which pertains to one specific row, then this method sets that row
 void SQLContext.setUsageIdRow(Row row)
          Sets the row whose data should be used to replace literal usage id's in the SQL (indicated with a ##?)
 void RowCollection.addRow(int index, Row row)
          Inserts the specified row at the specified position in this list (optional operation).
 boolean RowCollection.addRow(Row row)
          Appends the specified row to the end of this list.
 boolean RowCollection.contains(Row row)
          Tests if a Row is contained in this RowCollection
 boolean RowCollection.containsRowWithFieldsEqualTo(Row pRow, List pFieldNamesToCompare)
          Tests if this RowCollection has a row with field values equal to the row passed in but only comparing the supplied fields.
 boolean RowCollection.removeRow(Row row)
          Removes the row from this RowCollection.
 boolean RowCollection.removeRow(Row row, List fieldNames)
          Removes the row from this RowCollection.
 boolean RowCollection.removeRowBasedOnKeyValues(Row row)
          Removes the row from this RowCollection.
 void RowCollection.replaceRow(Row oldRow, Row newRow)
          Replaces one Row in this RowCollection with another Row.
 void RowCollection.replaceRow(Row oldRow, Row newRow)
          Replaces one Row in this RowCollection with another Row.
 Row RowCollection.setRow(int index, Row row)
          Replaces the row at the specified position in this list with the specified row (optional operation).
 void Row.copyIntoRowFieldsWithCommonFieldNames(Row rowToCopy)
          Copy the fields from the supplied Row with the same field name into this Row.
 void Row.copyIntoRowFieldsWithCommonFieldNames(Row rowToCopy, boolean ignoreCase)
          Copy the fields from the supplied Row with the same field name into this Row.
 void Row.copyIntoRowFieldsWithCommonUsageIds(Row rowToCopy)
          Copy the fields from the supplied Row with the same usageid into this Row.
 void Row.copyIntoRowFieldsWithGivenFieldNames(List fieldNames, Row rowToCopy)
          Copy the fields from the supplied Row that has a name in the given list.
 void Row.copyIntoRowFieldsWithGivenFieldNames(List fieldNames, Row rowToCopy, boolean ignoreCase)
          Copy the fields from the supplied Row that has a name in the given list.
 Row Row.createRow(Row pDefaultRow)
          Creates a new Row.
 boolean Row.equals(Row row, List fieldNames)
          Tests if a group of fields in this row have the same values as a group of fields in another row
 void Row.merge(Row row)
          Merges the fields of another row into this one.
 void Row.setFieldValuesWithCommonFieldNames(Row source)
          Sets values from the source Row into this Row (the target) for all Fields that BOTH the source and the target have.
 void Row.setFieldValuesWithCommonFieldNames(Row source, boolean ignoreCase)
          Sets values from the source Row into this Row (the target) for all Fields that BOTH the source and the target have.
 void Row.setFieldValuesWithCommonUsageIds(Row rowToCopy)
          Copy the field values from the supplied Row with the same usageid into this Row.
 Row Row.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
 Row IRowCreator.createRow(Row pDefaultRow)
          Creates a new Row.
 void Field.setRow(Row pRow)
          Sets the Row this Field belongs to.
 

Uses of Row in planetj.database.connection
 

Subclasses of Row in planetj.database.connection
 class AS400ConnectionRow
          Represents a ConnectionPool for AS400 objects.
 class ConnectionRow
          Class generated by planetj.dataengine.RowClassGenerator Created at: Wed Apr 10 19:24:10 PDT 2002
 

Methods in planetj.database.connection that return Row
 Row ConnectionRow.createRow(Row pDefaultRow)
          Creates a new Row.
 Row ConnectionRow.statusChanged(Field pField, ExecutingContext ec)
          Invoked when a status change takes place on of this Row's fields.
 

Methods in planetj.database.connection with parameters of type Row
 Row ConnectionRow.createRow(Row pDefaultRow)
          Creates a new Row.
 

Uses of Row in planetj.database.field
 

Methods in planetj.database.field with parameters of type Row
static Object SQLAssociationField.getAssociation(Operation associationOp, Row row, ExecutingContext ec)
          Get the association from the given operation.
 void LogicalField.setRow(Row pRow)
          Sets the Row this Field belongs to.
static List FieldSet.getFieldSets(List pFieldNameSets, Row pRow)
          Gets a List containing FieldSet objects.
static List FieldSet.getFieldSets(Row pRow)
          Gets a List containing FieldSet objects.
 

Constructors in planetj.database.field with parameters of type Row
FieldSetCollection(List pFieldNameSets, Row pRow)
          Gets a List containing FieldSet objects.
FieldSetCollection(Row pRow)
           
 

Uses of Row in planetj.database.fielddescriptors
 

Subclasses of Row in planetj.database.fielddescriptors
 class AbstractDerivedFieldDescriptor
          Defines a Field that is computed such as concating two fields, substracting, etc.
 class ColumnFunctionResultFieldDescriptor
          Insert the type's description here.
 class DerivedDate
          Converts fields that in centry, year, month, and day individual fields into a java.sql.Date wrapped in a Field Creation date: (2/7/2002 11:48:19 AM)
 class DerivedFieldDescriptor
          Insert the type's description here.
 class FieldDescriptorRow
          Represents metadata describing a field that was read from a row in the database.
 class TableDescriptor
          Describes a Table in the database
 

Methods in planetj.database.fielddescriptors that return Row
 Row FieldDescriptorRow.createRow(Row pDefaultRow)
          Creates a new Row.
 Row FieldDescriptorRow.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
 

Methods in planetj.database.fielddescriptors with parameters of type Row
 Row FieldDescriptorRow.createRow(Row pDefaultRow)
          Creates a new Row.
 boolean FieldDescriptorRow.isAuthorizedForEdit(Row pRow, ExecutingContext pEc)
          Tests if user can edit a field.
 boolean FieldDescriptorRow.isAuthorizedForRead(Row pRow, ExecutingContext pEc)
          Tests if user can read a field.
 Row FieldDescriptorRow.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
 Field DerivedDate.getDerivedField(Row pRow)
          Return a Field appropriate for the Derivation such as concat, substract, etc.
 Field ColumnFunctionResultFieldDescriptor.getDerivedField(Row row)
          Return a Field appropriate for the Derivation such as concat, substract, etc.
abstract  Field AbstractDerivedFieldDescriptor.getDerivedField(Row row)
          Return a Field appropriate for the Derivation such as concat, substract, etc.
 

Uses of Row in planetj.database.filter
 

Methods in planetj.database.filter that return Row
 Row FilteredRowCollection.setRow(int index, Row row)
          Replaces the row at the specified position in this list with the specified row, if the Row meets the filter criteria.
 

Methods in planetj.database.filter with parameters of type Row
 void FilteredRowCollection.addRow(int index, Row row)
          Inserts the specified row at the specified position in this list (optional operation).
 boolean FilteredRowCollection.removeRow(Row row)
          Removes the row from this RowCollection.
 Row FilteredRowCollection.setRow(int index, Row row)
          Replaces the row at the specified position in this list with the specified row, if the Row meets the filter criteria.
 boolean BasicRowFilter.meetsFieldCriteria(Row row)
           
 

Uses of Row in planetj.database.flatfile
 

Subclasses of Row in planetj.database.flatfile
 class FlatFileReferenceRow
          Row responsible for Flat Files Creation date: Jun 2, 2004 - 5:31:37 PM
 class HttpFlatFieldReferenceRow
          Row responsible for Http Flat File references Creation date: Jun 2, 2004 - 5:32:30 PM
 class ISeriesFlatFileReferenceRow
          ISeries Row responsible for Flat Files Creation date: Jun 2, 2004 - 5:32:14 PM
 

Uses of Row in planetj.database.possiblevalues
 

Subclasses of Row in planetj.database.possiblevalues
 class PossibleValueRow
           
 

Methods in planetj.database.possiblevalues that return Row
static Row PossibleValueManager.getConfigProperty(String metaDataSystemAlias, String key, String[] orderByColumnNames, int ownerId)
          This will return a RowCollection of configuration properties.
 

Uses of Row in planetj.database.report
 

Subclasses of Row in planetj.database.report
 class ReportBreakRow
          Insert the type's description here.
 

Methods in planetj.database.report with parameters of type Row
 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
 void ColumnFunction.processRow(Row pRow)
          Inputs a new row to the column function
 

Uses of Row in planetj.dataengine
 

Subclasses of Row in planetj.dataengine
 class CustomerRow
          Creation date: (1/30/2002 2:09:39 PM)
 class PropertyRow
          A PropertyRow is simply a Row that has a Field that contains PropertyGroups representing properties of the Row.
 

Methods in planetj.dataengine that return Row
static Row SessionManager.getRow(javax.servlet.http.HttpServletRequest pRequest, String pRowKey)
          Deprecated. Row's should no be set on the request as a persistent or page attribute. call HttpRequestManager.getAttribute(String, HttpSerlvetRequest)
 Row PropertyRow.createRow(Row row)
          Initializes this PropertyRow as it is retrieved from the database.
 Row PropertyRow.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
static Row DataEngineManager.getCurrentRow(javax.servlet.http.HttpServletRequest request)
          Gets the current Row from the request.
static Row DataEngineManager.getCurrentAlternateRow(javax.servlet.http.HttpServletRequest request)
          Gets the current Alternate Row from the request.
 Row AbstractContext.getParameterSource()
          Gets the row that was used to set the named parameters in this context, or null if no such row exists.
 

Methods in planetj.dataengine with parameters of type Row
 Row PropertyRow.createRow(Row row)
          Initializes this PropertyRow as it is retrieved from the database.
 Row PropertyRow.transferDataTo(Row pDestinationRow)
          Transfers all the data in this Row into a different Row.
 void ISelectionListener.handleRecordSelection(Row pSelectedRow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Insert the method's description here.
 void IContext.setParameterValues(Row row)
           
static void DataEngineManager.setCurrentAlternateRow(Row row, javax.servlet.http.HttpServletRequest request)
          Set the current Alternate Row key.
 void AbstractContext.setParameterDisplayValues(Row row)
          Provides values for all of this context's display parameters.
 void AbstractContext.setParameterValues(Row row)
          Provides values for all of this context's RowParameters and ContextParameterParameters.
 

Uses of Row in planetj.dataengine.application
 

Subclasses of Row in planetj.dataengine.application
 class Application
          Contains information describing a DataEngine application Creation date: (3/21/2002 1:11:21 PM)
 

Methods in planetj.dataengine.application that return Row
 Row Application.createRow(Row pDefaultRow)
          Creates a new Row.
 

Methods in planetj.dataengine.application with parameters of type Row
 Row Application.createRow(Row pDefaultRow)
          Creates a new Row.
 

Uses of Row in planetj.dataengine.autorun
 

Subclasses of Row in planetj.dataengine.autorun
 class AutoRunBatchProcessOperation
          This Operation describes how another operation should be automatically run using batch processing.
 class AutoRunOperation
          An Operation which describes how a different operation should be autorun
 class EmailOperation
          Describes how a operation (not this operation, another one) should be automatically emailed
 

Uses of Row in planetj.dataengine.cache
 

Methods in planetj.dataengine.cache that return Row
 Row KeyedRowCache.get(RowKey key)
          Gets a keyed row out of the cache
 

Methods in planetj.dataengine.cache with parameters of type Row
 boolean KeyedRowCache.add(Row row)
          Adds a Row to the cache, but only if it has a key.
 boolean KeyedRowCache.isContains(Row row)
          Tests if a row is present in the cache
 

Uses of Row in planetj.dataengine.display
 

Methods in planetj.dataengine.display with parameters of type Row
abstract  Object RowAction.handleRowAction(Row row)
          Subclasses need to provide logic to handle the action they wish to perform.
 

Uses of Row in planetj.dataengine.email
 

Subclasses of Row in planetj.dataengine.email
 class EmailRow
          This class servers as a convience class for a Row that contains email functionality.
 

Uses of Row in planetj.dataengine.email.html
 

Subclasses of Row in planetj.dataengine.email.html
 class HTMLEmailRow
          This class servers as a convience class for a Row that contains email functionality.
 

Uses of Row in planetj.dataengine.messageboard
 

Subclasses of Row in planetj.dataengine.messageboard
 class MessageBoardRow
           
 class MessageRow
           
 

Uses of Row in planetj.dataengine.operation
 

Subclasses of Row in planetj.dataengine.operation
 class HTMLOperation
          HTMLOperations allow entry and viewing of straight HTML from WOW.
 class Operation
          Represents an operation that can be executed.
 class RefererAuthorizationOperation
          An operation for specifying http refers used for authorizing users
 class SelectionOperation
          A SelectionOperation is an Operation that carries out some Operation on the selected Row.
 class UserAuthenticationListOperation
          This operation simply holds a comma seperated list of user names.
 class UserAuthorizationListOperation
          This operation simply holds a comma seperated list of user names.
 class UserAuthorizationOperation
          This operation contains an SQL string that may be executed to get a list of user names that can be used to determine authorization.
 

Methods in planetj.dataengine.operation that return Row
 Row Operation.createRow(Row row)
          Initializes this SQLOperation as it is retrieved from the DB
 Row Operation.statusChanged(Field pField, ExecutingContext ec)
          Invoked when a status change takes place on of this Row's fields.
 

Methods in planetj.dataengine.operation with parameters of type Row
 boolean UserAuthorizationOperation.isAuthorized(Row pRow, ExecutingContext pEc)
           
 boolean UserAuthorizationListOperation.isAuthorized(Row pRow, ExecutingContext pEc)
           
 boolean UserAuthenticationListOperation.isAuthorized(Row pRow, ExecutingContext pEc)
           
 IMagicRequest Operation.createMagicRequest(String id, Field basedOnField, Row basedOnRow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Creates a MagicRequest for viewing this operation.
 IMagicRequest Operation.createMagicRequest(String id, Row basedOnRow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Creates a MagicRequest for viewing this operation.
 Row Operation.createRow(Row row)
          Initializes this SQLOperation as it is retrieved from the DB
 Object Operation.execute(ExecutingContext ed, Row row)
          Executes this operation from the given executing context and Row.
 boolean Operation.isAuthorizedForExecution(Row pRow, ExecutingContext pEc)
          Test for authority to execute this operation.
 boolean IAuthorizationOperation.isAuthorized(Row pRow, ExecutingContext pEc)
          Creation date: (4/25/2003 8:50:20 AM)
 Object HTMLOperation.execute(ExecutingContext ec, Row row)
          Executes this operation from the given executing context and Row and returns HTML code for this Operation.
 

Uses of Row in planetj.dataengine.parameter
 

Methods in planetj.dataengine.parameter with parameters of type Row
 Object RowParameter.extractValueFromSource(Row source)
          Gets the value which this parameter is interested in out of the Row.
 

Uses of Row in planetj.dataengine.security
 

Subclasses of Row in planetj.dataengine.security
 class DEAuthorization
           
 class DEGroup
           
 class DEGroup2Authorization
           
 class DEUser
           
 class DEUser2Group
           
 

Methods in planetj.dataengine.security that return Row
static Row DESecurityManager.secureRow(IUser user, Row row)
          Check to see if the given principal is allowed to view the given operation.
 

Methods in planetj.dataengine.security with parameters of type Row
static Row DESecurityManager.secureRow(IUser user, Row row)
          Check to see if the given principal is allowed to view the given operation.
 

Uses of Row in planetj.dataengine.security.http
 

Methods in planetj.dataengine.security.http that return Row
 Row SignOnReceipt.getPropertiesRow()
          Gets the row stored in this SignOnReceipt during sign on.
 

Methods in planetj.dataengine.security.http with parameters of type Row
 void SignOnReceipt.setPropertiesRow(Row row)
          Sets the row stored in this SignOnReceipt during sign on.
 

Uses of Row in planetj.dataengine.sqloperation
 

Subclasses of Row in planetj.dataengine.sqloperation
 class AuthenticationOperation
          This operation type allows WOW application to check a persons rights (userid/pwd) before accessing a WOW application.
 class JavaOperation
          !!DA (6/2/2003 3:31:24 PM)
 class PossibleValuesSearchOperation
          Creation date: (2/6/2003 4:12:07 PM)
 class SQLOperation
          Represents an operation that can be run against a databse.
 

Methods in planetj.dataengine.sqloperation that return Row
 Row SQLOperation.createRow(Row row)
          Initializes this SQLOperation as it is retrieved from the DB
 Row PossibleValuesSearchOperation.getOriginRow()
          Insert the method's description here.
 

Methods in planetj.dataengine.sqloperation with parameters of type Row
 Row SQLOperation.createRow(Row row)
          Initializes this SQLOperation as it is retrieved from the DB
 Object SQLOperation.execute(ExecutingContext pEc, Row pRow)
          Returns a result set that results from the SQL query Creation date: (4/23/2003 7:40:14 AM)
 Object SQLOperation.execute(ExecutingContext ec, Row pRow, boolean checkConnectionPool)
          Returns a result set that results from the SQL query Creation date: (4/23/2003 7:40:14 AM)
 IMagicRequest PossibleValuesSearchOperation.createMagicRequest(String id, Row originRow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Creates a MagicRequest for viewing this operation
 void PossibleValuesSearchOperation.handleRecordSelection(Row pSelectedRow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Handles the selection of a record.
 void PossibleValuesSearchOperation.setOriginRow(Row pRow)
          Insert the method's description here.
 

Uses of Row in planetj.dataengine.sqloperation.http
 

Methods in planetj.dataengine.sqloperation.http that return Row
 Row HttpOperationManager.getInsertRow(SQLContext context, DataEngineServlet servlet, javax.servlet.http.HttpServletRequest request)
          Prepares the given Operation to be inserted.
 

Uses of Row in planetj.dataengine.test
 

Subclasses of Row in planetj.dataengine.test
 class MyTestOp
           
 class TEST2Row
          Insert the type's description here.
 class URLMonitoringRow
           
 class WKTestRow
          This class is a test class used during developement to test certain features.
 

Uses of Row in planetj.dataengine.theme
 

Subclasses of Row in planetj.dataengine.theme
 class Theme
          Contains information describing a DataEngine theme
 

Uses of Row in planetj.dataengine.webservices
 

Methods in planetj.dataengine.webservices that return Row
static Row DistributedObjectUtility.requestRow(URL sourceURL)
          Must specify where to receive the Row from and where to send it to if any actions are to occur on it.
 

Uses of Row in planetj.html
 

Methods in planetj.html that return Row
static Row HTMLExtractor.extractDataIntoRow(String rowNavKey, Row row, javax.servlet.http.HttpServletRequest request)
          Extracts information off the HttpServletRequest and puts it in the given Row.
static Row HTMLExtractor.extractDataIntoRow(Row row, javax.servlet.http.HttpServletRequest request)
          Extracts information off the HttpServletRequest and puts its in the given Row.
static Row HTMLExtractor.extractTableDataIntoRow(String rcNavKey, String rowNavKey, Row row, javax.servlet.http.HttpServletRequest request)
          Extracts information off the HttpServletRequest out of a table and puts it in the given Row.
static Row HTMLExtractor.getSelectedRow(String rcSessionId, javax.servlet.http.HttpServletRequest request)
          Retrieves the selected Row from the HttpServletRequest.
 

Methods in planetj.html with parameters of type Row
static StringBuffer MagicRequestRenderer.appendAction(ActionDisplayDescriptor descriptor, Row row, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Append HTML code for the Action associated with the given display descriptor.
static String MagicRequestRenderer.generateAction(ActionDisplayDescriptor descriptor, Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generates HTML code for the Action associated with the given display descriptor.
 StringBuffer HTMLTable.appendRow(int rowNum, int displayRowNum, Row row, List fieldNames, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Deprecated. - replaced with appendRow that also takes in an OddEvenFlag object used to determine if the row being generated is odd or even
 StringBuffer HTMLTable.appendRow(int rowNum, int displayRowNum, OddEvenFlag oddEvenFlag, Row row, List fieldNames, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 StringBuffer HTMLTable.appendRow(int rowNum, int displayRowNum, OddEvenFlag oddEvenFlag, boolean isChildRow, Row row, List fieldNames, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 boolean HTMLTable.isDisplayRow(Row row)
          Determines if the Row should be displayed or not.
 StringBuffer HTMLRowDetails.appendFieldSetCollectionDetails(FieldSetCollection fieldSetCollection, Row row, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generate HTML code for the given FieldSetCollection.
 StringBuffer HTMLRowDetails.appendFieldSetDetails(FieldSet fieldSet, Row row, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generate HTML code for the given FieldSetCollection.
 String HTMLRowDetails.generateDetails(FieldSet pFieldSet, Row pRow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generates the details for a using only a field set.
 String HTMLRowDetails.generateDetails(FieldSet pFieldSet, Row pRow, boolean includeTags, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generates the details for a using only a field set.
 String HTMLRowDetails.generateDetails(FieldSetCollection fsc, Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generate HTML code for the given FieldSetCollection.
 String HTMLRowDetails.generateDetails(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generates the details for a Row
 List HTMLRowDetails.getRowDetailsFields(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generates the details for a Row
static StringBuffer HTMLRowActionRenderer.appendAction(ActionDisplayDescriptor descriptor, Row row, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Append HTML code for the Action associated with the given display descriptor.
static String HTMLRowActionRenderer.generateAction(ActionDisplayDescriptor descriptor, Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Generates HTML code for the Action associated with the given display descriptor.
 void HTMLOperationGenerator.includeOperation(Row row, Operation operation, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Includes the Operation's JSP file.
static String HTMLGenerator.generateTable(Row row, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Deprecated. This is a unused method with a bad name
static Row HTMLExtractor.extractDataIntoRow(String rowNavKey, Row row, javax.servlet.http.HttpServletRequest request)
          Extracts information off the HttpServletRequest and puts it in the given Row.
static Row HTMLExtractor.extractDataIntoRow(Row row, javax.servlet.http.HttpServletRequest request)
          Extracts information off the HttpServletRequest and puts its in the given Row.
static Row HTMLExtractor.extractTableDataIntoRow(String rcNavKey, String rowNavKey, Row row, javax.servlet.http.HttpServletRequest request)
          Extracts information off the HttpServletRequest out of a table and puts it in the given Row.
 

Uses of Row in planetj.magic
 

Methods in planetj.magic that return Row
 Row ViewRowRequest.extractRow(javax.servlet.http.HttpServletRequest pRequest)
           
 Row UpdateRowRequest.prepareUpdateRow(Row row, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes, DataEngineServlet servlet)
          Deprecated. by WK on (8/9/2003 8:16:22 PM) because the HttpServletResponse and DataEngineServlet should never be needed. Made final to ensure that no subclasses override this method thinking their logic will get run. prepareRow is the method called before processing a Row. This method will no longer be available in WOW 7.0.
 Row UpdateRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Updated the given Row into the database.
 Row RowRequest.extractRow(javax.servlet.http.HttpServletRequest request)
           
 Row RowRequest.getRow(javax.servlet.http.HttpServletRequest request)
           
 Row RowReflectionRequest.extractRow(javax.servlet.http.HttpServletRequest request)
           
 Row PrintRowRequest.getRow(javax.servlet.http.HttpServletRequest request)
           
 Row NextOrPreviousRowRequest.getNextRow()
           
 Row NextOrPreviousRowRequest.getPreviousRow()
           
 Row NextOrPreviousRowRequest.getRow()
           
 Row InsertRowRequest.prepareInsertRow(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse res, DataEngineServlet ser)
          Deprecated. by WK on (8/9/2003 8:16:22 PM) because the HttpServletResponse and DataEngineServlet should never be needed. Made final to ensure that no subclasses override this method thinking their logic will get run. prepareRow is the method called before processing a Row. This method will no longer be available in WOW 7.0.
 Row InsertRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Inserts the given Row into the database.
 Row InsertRequest.prepareInsertRow(Row row, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes, DataEngineServlet servlet)
          Deprecated. Override this method to alter the row before it is inserted in the db.
 Row IMagicRequest.getBaseRow()
          Get the based on Row for this Request.
 Row EditRowRequest.extractRow(javax.servlet.http.HttpServletRequest pRequest)
           
 Row DeleteRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Subclasses should provide logic in this method to handle necessary processing of the Row.
 Row CopyRowRequest.copyRow(javax.servlet.http.HttpServletRequest pRequest)
           
 Row AbstractSelectionRequest.getSelectedRow(javax.servlet.http.HttpServletRequest request)
           
 Row AbstractRowRequest.extractDataIntoRow(javax.servlet.http.HttpServletRequest request)
          Gets the Row out of the request and extracts data from the request into it.
 Row AbstractRowRequest.getRow(javax.servlet.http.HttpServletRequest request)
          Gets the Row out of the request.
 Row AbstractRowRequest.prepareRow(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Prepares this Row to be processed by this RowRequest.
abstract  Row AbstractRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Subclasses should provide logic in this method to handle necessary processing of the Row.
 Row AbstractMagicRequest.getBaseRow()
          Get the based on Row for this Request.
 

Methods in planetj.magic with parameters of type Row
 void UpdateRowRequest.postUpdate(Row row, int numUpdated, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Method called after update is attempted.
 Row UpdateRowRequest.prepareUpdateRow(Row row, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes, DataEngineServlet servlet)
          Deprecated. by WK on (8/9/2003 8:16:22 PM) because the HttpServletResponse and DataEngineServlet should never be needed. Made final to ensure that no subclasses override this method thinking their logic will get run. prepareRow is the method called before processing a Row. This method will no longer be available in WOW 7.0.
 Row UpdateRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Updated the given Row into the database.
 StringBuffer RowReflectionRequest.append(Row row, ActionDisplayDescriptor displayDescriptor, StringBuffer html, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Appends HTML code to the given buffer and uses the given ActionDisplayDescriptor.
 void NextOrPreviousRowRequest.setRow(Row pRow)
           
 void InsertRowRequest.postInsert(Row row, int numInserted, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Method called after insert is attempted.
 Row InsertRowRequest.prepareInsertRow(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse res, DataEngineServlet ser)
          Deprecated. by WK on (8/9/2003 8:16:22 PM) because the HttpServletResponse and DataEngineServlet should never be needed. Made final to ensure that no subclasses override this method thinking their logic will get run. prepareRow is the method called before processing a Row. This method will no longer be available in WOW 7.0.
 Row InsertRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Inserts the given Row into the database.
 Row InsertRequest.prepareInsertRow(Row row, javax.servlet.http.HttpServletRequest pReq, javax.servlet.http.HttpServletResponse pRes, DataEngineServlet servlet)
          Deprecated. Override this method to alter the row before it is inserted in the db.
 void InsertAndNewRowRequest.postRowProcess(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Method called after this RowRequest executes.
 void IMagicRequest.setBaseRow(Row row)
          Set the based on Row for this Request.
 void DeleteRowRequest.postDelete(Row row, int numDeleted, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Method called after delete is attempted.
 Row DeleteRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Subclasses should provide logic in this method to handle necessary processing of the Row.
 void AbstractRowRequest.postRowProcess(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Method called after this RowRequest executes.
 Row AbstractRowRequest.prepareRow(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Prepares this Row to be processed by this RowRequest.
abstract  Row AbstractRowRequest.processRow(Row row, ExecutingContext ec, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Subclasses should provide logic in this method to handle necessary processing of the Row.
 void AbstractRowRequest.setUserMessage(Row row, int pCount, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Set the message the user will see after execution of this request.
 void AbstractMagicRequest.setBaseRow(Row pBaseRow)
          Set the based on Row for this Request.
 

Constructors in planetj.magic with parameters of type Row
UpdateRowRequest(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Constructor comment.
RowRequest(String pId, javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, String pURI, String pRowCollectionSessionId, String pRowSessionId, Row pRow)
          EditRowRequest constructor comment.
NextOrPreviousRowRequest(String pId, javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, Row pRow, boolean next)
           
InsertRowRequest(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Constructor comment.
InsertAndNewRowRequest(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Constructor comment.
EmailExecutionRequest(String id, javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, Row pRow, boolean pUpdate)
          EditRowRequest - pUpdate tells if check for change on update should be performed.
EmailExecutionRequest(javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, Row pRow, boolean pUpdate)
          EditRowRequest - pUpdate tells if check for change on update should be performed.
EditRowRequest(String pId, javax.servlet.http.HttpServletRequest pRequest, javax.servlet.http.HttpServletResponse pResponse, String pURI, String pRowCollectionSessionId, String pRowSessionId, Row pRow)
          EditRowRequest constructor comment.
DeleteRowRequest(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          DeleteRowRequest constructor comment.
CancelRequest(String pId, Row pRow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Deprecated. by WK on (11/26/2003 10:07:42 AM) id is no longer needed, replaced with by CancelRequest(Row, HttpServletRequest, HttpServletResponse)
CancelRequest(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Constructor.
AbstractRowRequest(Row row, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Constructor comment
 

Uses of Row in planetj.processes.logon
 

Subclasses of Row in planetj.processes.logon
 class SignOnAndRegistrationRow
          This row will be used for SingOn and Registration processes.