|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Field in planetj.database |
Methods in planetj.database that return Field | |
Field |
Row.getAutoIncrementDatabaseDrivenField(ExecutingContext ec)
Check to see if there is a Field in this Row that is an auto increment field handled by the database. |
Field |
Row.getField(int pIndex)
Returns the Field at the specified index in this Row. |
Field |
Row.getField(java.lang.String fieldName)
Returns the Field for the given name, or null if no such Field exists. |
Field |
Row.getField(java.lang.String name,
boolean create)
Get the Field in this Row with the given name. |
Field |
Row.getFieldWithUsageId(int usageId)
Get the Field with the given usage id from this row. |
Field |
Row.newField(FieldDescriptorRow pFD)
Creates and adds a Field to this Row, then returns the Field. |
Field |
Row.newField(java.lang.String pFieldName,
FieldDescriptorRow pFD)
Creates and adds a Field to this Row, then returns the Field. |
Field |
Row.newField(java.lang.String pFieldName,
int pSQLType)
Creates and adds a Field to this Row, then returns the Field. |
Field |
Row.newField(java.lang.String pFieldName,
java.lang.String pFieldClassName)
Creates and adds a Field to this Row, then returns the Field. |
Field |
Row.removeField(Field field)
Removes the specified field from this row. |
Field |
Row.removeField(java.lang.String fieldName)
Removes the field with the specified name from this row. |
Field |
Row.SpacingRow.newField(java.lang.String pFieldName,
FieldDescriptorRow pFD)
|
Field |
FieldCollection.getField(int pIndex)
Returns the Field with the given index. |
Field |
FieldCollection.getField(java.lang.String pFieldName)
Returns the Field with the given name. |
Field |
FieldCollection.removeField(Field field)
Removes the specified field from this FieldCollection. |
Field |
FieldCollection.removeField(java.lang.String fieldName)
Removes the field with the specified name from this FieldCollection. |
Field |
Field.cloneField()
Returns a clone of the Field. |
static Field |
Field.create(java.lang.String pName,
int pSQLType)
Create and return a new Field |
static Field |
Field.create(java.lang.String pName,
java.lang.Class pFieldType)
Create and return a new Field |
static Field |
Field.createFromDataType(java.lang.String pName,
java.lang.Class pDataType)
Create and return a new Field, based on the type of data the field should hold. |
protected static Field |
Field.createInternal(java.lang.String pName,
java.lang.Class pFieldType)
Create and return a new Field |
Field |
Field.rollbackChanges()
Undo any changes that have been made to this Field since it was read from or written to the database. |
Methods in planetj.database with parameters of type Field | |
void |
Row.add(Field pField)
Adds the given Field to this Row's FieldCollection. |
boolean |
Row.fieldHasPossibleValuesSQLOperation(Field pField,
ExecutingContext pContext)
Deprecated. replaced with hasPossibleValuesOperation(Field, ExecutingContext) to keep consistancy with similar methods |
boolean |
Row.hasPossibleValuesOperation(Field field,
ExecutingContext ec)
Tests if a field is possible values op. |
java.awt.Color |
Row.getBackgroundColor(Field field,
ExecutingContext ec)
Gets the background color to use when rendering the specified field in a non-HTML way |
int |
Row.getColumnSpan(Field field,
boolean isDetails)
Get the number of columns the given field should take up. |
Operation |
Row.getFieldAssociationOperation(Field field)
Gets the association's operation for the given Field |
java.lang.Object |
Row.getFieldDefaultValue(Field field,
ExecutingContext ec)
Get the field's default value as a String. |
FieldDescriptorRow |
Row.getFieldDescriptor(Field pField,
FieldDescriptorRow pFieldDescriptor)
Row subclasses can override this method to return the a clone of the default FD added by TJH Jun 22, 2004 11 : 49 : 27 PM to allow Rows to return different FDs for this field. |
int |
Row.getFieldDisplayOrder(Field field)
Gets the order of which the given Field will appear in its FieldSet |
java.lang.Object |
Row.getFieldDisplayValue(Field field)
Returns the display value for the Field with the specified name. |
java.lang.String |
Row.getFieldExternalName(Field field)
Gets the external name of a field |
java.lang.String[] |
Row.getFieldFieldClassParameters(Field field)
Gets the parameters for the given Field. |
java.lang.String |
Row.getFieldFieldSetName(Field field)
Gets the name of the given Field's FieldSet NOTE: This method will not get called unless you override the isUseRowForFieldSets method to return true. |
IFieldIncrementor |
Row.getFieldIncrementor(Field f)
Gets the incrementor for the field By default, Fields will use the same incrementor for their values. |
RowCollection |
Row.getFieldPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
java.lang.Object |
Row.getFieldSearchDefaultValue(Field field,
ExecutingContext ec)
Gets the default value for the field when it is being used in a search |
int |
Row.getFieldStatusChange(Field field)
Returns whether or not we notify on a status change for the specified field |
java.lang.String |
Row.getFieldStyleClass(Field field,
java.lang.String value,
java.lang.String displayValue,
ExecutingContext ec)
Get a Field's style. |
int[] |
Row.getFieldUsageIds(Field field)
Gets the usage ids of this field. |
short |
Row.getHorizontalAlignment(Field field,
ExecutingContext ec)
Gets the alignment for the specified field, when it is rendered in a non-HTML way |
java.lang.String |
Row.getPossibleValueClass(Field field)
Returns the fully qualified name for a class implementing the IPossibleValueGetter interface which will handle the
retrieving of possible values for the specified field
Default behavior is to ask the FD |
RowCollection |
Row.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
java.lang.String |
Row.getPossibleValuesKey(Field field)
Gets the possible values SQLOperation for the specified field |
Operation |
Row.getPossibleValuesOperation(Field field)
Gets the possible values Operation for the specified field |
boolean |
Row.hasAssociationOperation(Field field,
ExecutingContext ec)
Tests if a field has an association operation. |
boolean |
Row.hasMultipleStyleClasses(Field field,
ExecutingContext ec)
Check if the given Field possibly has more than one style class. |
boolean |
Row.hasPossibleValuesKeyClassOrOp(Field field)
Tests if the specified field has any type of Possible Values |
void |
Row.incrementFieldValue(Field field,
ExecutingContext ec)
Increment this Field's value. |
boolean |
Row.isFieldApplicable(Field fld,
ExecutingContext ec)
Tests if a field is applicable in the current scenario |
boolean |
Row.isFieldAuthorizedForEdit(Field pField,
ExecutingContext pContext)
Tests if a field is authorized for edit. |
boolean |
Row.isFieldAuthorizedForRead(Field pField,
ExecutingContext pContext)
Tests if a field is authorized for read. |
boolean |
Row.isFieldAutoIncrement(Field field,
ExecutingContext ec)
Is the specified field an auto-increment field? |
boolean |
Row.isFieldAutoIncrementWOWDriven(Field field,
ExecutingContext ec)
Is the given Field a WOW driven auto increment field. |
boolean |
Row.isFieldAutoIncrementDatabaseDriven(Field field,
ExecutingContext ec)
Is the given Field a database driven auto increment field. |
boolean |
Row.isFieldDisplayable(Field field,
ExecutingContext ec)
Check to see if this Field is displayable. |
boolean |
Row.isFieldReadOnly(Field pField,
ExecutingContext pContext)
Tests if a field is read only. |
boolean |
Row.isFieldReadOnlyOnSearch(Field field,
ExecutingContext ec)
Test if the field is read only on search. |
boolean |
Row.isFieldRequired(Field pField,
ExecutingContext pContext)
Tests if a field is required or not. |
boolean |
Row.isFieldRequiredOnSearch(Field pField,
ExecutingContext pContext)
Tests if a field is required or not. |
boolean |
Row.isFieldUpdateable(Field f)
Tests if the field is updateable. |
boolean |
Row.isFieldValuePossibleValue(Field field,
ExecutingContext ec)
Tests if the field's value is a possible value. |
boolean |
Row.isIncrementorResetAfterMaxInsertRetries(Field field)
Check if the FieldIncrementor for the given Field should be reset after the max number of insert retries is attempted. |
boolean |
Row.isPrepareFieldValue(Field f,
ExecutingContext ec)
Tests if the field's display value needs to be prepared before being displayed. |
boolean |
Row.isStatusChange(Field field)
Check to see if this field is status change. |
boolean |
Row.isValidationRequiredForAutoPopulate(Field pField,
ExecutingContext pEC)
Tells whether or not the Field's validate method will be called before the Auto Populate action is executed. |
Field |
Row.removeField(Field field)
Removes the specified field from this row. |
void |
Row.replaceField(Field newField)
Replace a Field with the given Field. |
Row |
Row.statusChanged(Field pField,
ExecutingContext ec)
Invoked when a status change takes place on of this Row's fields. |
boolean |
Row.validateField(Field field,
ExecutingContext ec)
Validates the given Field and returns whether or not the Field is valid. |
boolean |
Row.SpacingRow.hasPossibleValuesKeyClassOrOp(Field field)
Tests if the specified field has any type of Possible Values |
void |
FieldCollection.add(Field pField)
Adds the given field to this FieldCollection. |
Field |
FieldCollection.removeField(Field field)
Removes the specified field from this FieldCollection. |
void |
FieldCollection.replace(Field pField)
Replaces the Field with the name of the given Field. |
RowCollection |
Field.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
boolean |
Field.isFieldValuesEqual(Field field)
Tests if the value of this field is equal to the specified field's value |
protected void |
Field.statusChanged(Field pField,
ExecutingContext ec)
Lets this field know that another field has changed its status. |
Uses of Field in planetj.database.connection |
Subclasses of Field in planetj.database.connection | |
class |
ConnectionStatusField
Displays the status of a connection |
Methods in planetj.database.connection that return Field | |
Field |
ConnectionRow.getOwnerIdField()
Returns the Owner Id Field |
Methods in planetj.database.connection with parameters of type Field | |
java.lang.Object |
ConnectionRow.getFieldDefaultValue(Field field,
ExecutingContext ec)
|
boolean |
ConnectionRow.isFieldApplicable(Field field,
ExecutingContext ec)
|
boolean |
ConnectionRow.isFieldRequired(Field field,
ExecutingContext pContext)
|
Row |
ConnectionRow.statusChanged(Field pField,
ExecutingContext ec)
Invoked when a status change takes place on of this Row's fields. |
Uses of Field in planetj.database.field |
Subclasses of Field in planetj.database.field | |
class |
AbstractBooleanField
|
class |
Address1Field
|
class |
Address2Field
|
class |
BigDecimalField
|
class |
BigDecimalNonNegativeField
Same as a BigDecimalField except cannot hold a negative value and be valid. |
class |
BigIntegerField
|
class |
BlankDisplayField
A Field which is always displayed as blank, and whose value is null. |
class |
BlobField
|
class |
CellNumberField
Represents a CellNumber. |
class |
CityField
|
class |
CreditCardExpirationMonthField
Represents a Credit Card Expiration Month Creation date: (7/1/2002 11:19:44 PM) |
class |
CreditCardExpirationYearField
Represents a Credit Card Expiration Year Creation date: (7/1/2002 11:19:44 PM) |
class |
CreditCardNumberField
Represents a Credit Card Number Creation date: (7/1/2002 11:02:23 PM) |
class |
CreditCardTypeField
Represents a Credit Card Type Examples: American Express, Discover, Visa, Master Card Creation date: (7/1/2002 11:03:55 PM) |
class |
DatabaseIncrementedField
|
class |
DataEngineServletClassName
Insert the type's description here. |
class |
DataLinkField
|
class |
DateField
|
class |
EmailField
Creation date: (1/29/2002 4:58:09 PM) |
class |
FaxNumberField
Represents a FaxNumber. |
class |
FDLibraryNameField
Used to display a library name in FD Manager |
class |
FDNameField
Insert the type's description here. |
class |
FieldClassName
Insert the type's description here. |
class |
FirstAndLastNameField
|
class |
FirstNameField
!!DA (7/21/2003 11:53:32 AM) |
class |
FlatFileReferenceField
Insert the type's description here. |
class |
FormatterClassName
Insert the type's description here. |
class |
GenderField
This field will represent a sex or gender. |
class |
HTMLCodeField
Wraps a field that is a url reference. |
class |
ImageURLReferenceField
This Field acts as a wrapper for a reference to an image. |
class |
JavaClassNameField
A field which holds the name of a Java class |
class |
JSPFileNameField
A field which holds the name of a JSP file |
class |
LastNameField
!!DA (7/21/2003 11:56:20 AM) |
class |
LastUpdateTimestampField
TimestampField that sets a new timestamp value when being inserted & updated. |
class |
LogicalField
Represents a field which cannot exist in the database. |
class |
LowerCaseStringField
A String field which converts everything to uppercase Creation date: (4/12/02 11:36:24 AM) |
class |
NumberField
|
class |
NumericCurrencyField
Deprecated. ~ not used anywhere 1/16/2006 |
class |
OperationClassName
|
class |
PasswordField
Creation date: (1/29/2002 4:58:01 PM) |
class |
PhoneNumberAreaCodeField
Represents a PhoneNumberAreaCode. |
class |
PhoneNumberField
Represents a PhoneNumber. |
class |
PossibleValueGetterClassName
Insert the type's description here. |
class |
RegistrationModeField
|
class |
RowClassName
|
class |
RowCollectionClassName
Insert the type's description here. |
class |
ScaledBigDecimalField
|
class |
SocialSecurityNumberField
Represents a Social Security Number. |
class |
SQLAssociationField
Represents an association between two SQL tables |
class |
SQLOperationField
A Field whose data is the result of an SQLOperation. |
class |
StateField
|
class |
StringField
|
class |
StringOrNumberField
|
class |
TableField
A field which contains a table |
class |
TempField
Insert the type's description here. |
class |
TFBooleanField
This Field class should be used in a case where a Field's value is either T or F in the database. |
class |
TimeField
|
class |
TimestampField
|
class |
TrackingNumberField
This class is used to denote its value contains a tracking number for some shipping carrier. |
class |
UpperCaseStringField
A String field which converts everything to uppercase Creation date: (4/12/02 11:36:24 AM) |
class |
URLReferenceField
Wraps a field that is a url reference. |
class |
UserIdField
This field has been enhanced to get the current user from its context. |
class |
YBlankBooleanField
Insert the type's description here. |
class |
YearField
|
class |
YNBooleanField
Insert the type's description here. |
class |
ZipCodeField
Represents a Zip Code Creation date: (5/10/2002 9:15:08 PM) |
class |
ZipCodeSuffixField
Represents a Zip Code Suffix Creation date: (5/13/2002 5:39:54 PM) |
Methods in planetj.database.field that return Field | |
Field |
TimestampField.cloneField()
Returns a clone of the Field. |
Field |
DateField.cloneField()
Returns a clone of the Field. |
Methods in planetj.database.field with parameters of type Field | |
RowCollection |
StateField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
static java.lang.Object |
SQLAssociationField.getAssociation(Field field)
Deprecated. replaced with getAssociation(Field, ExecutingContext) because with the executing context, user parameters can now be included in association sqls operations |
static java.lang.Object |
SQLAssociationField.getAssociation(Field field,
ExecutingContext ec)
Get the association from the given Field. |
RowCollection |
RegistrationModeField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
java.lang.Object |
IFieldIncrementor.getNextValue(Field pField)
Gets the next value of a field for which the auto-increment value is true. |
void |
IFieldIncrementor.setLastValue(Field pField,
java.lang.Object pLastValue)
Sets the last value of a field for which the auto-increment value is true. |
void |
IFieldIncrementor.setNextValue(Field pField,
java.lang.Object pNextValue)
Sets the next value of a field for which the auto-increment value is true. |
void |
IFieldIncrementor.clearValue(Field field)
Clears the incrementors value. |
RowCollection |
GenderField.getPossibleValues(Field fld)
Returns a RowCollection containing the possible values for the Field. |
void |
FieldIncrementor.clearValue(Field field)
Clears the next value for the incrementor, which will force the incrementor to read the database to get the most current value. |
protected java.lang.Object |
FieldIncrementor.findLastValue(Table pTable,
Field pField)
Queries the database for the maximum value in the specified column of the specified table |
java.lang.Object |
FieldIncrementor.getNextValue(Field pField)
Gets the next value of a field for which the auto-increment value is true. |
protected java.lang.Object |
FieldIncrementor.getNextValue(Table pTable,
Field pField,
java.lang.Class pClass)
Gets the next value of a field for which the auto-increment value is true. |
protected java.lang.Object |
FieldIncrementor.getNextValue(Table pTable,
FieldDescriptorRow pFD,
Field pField,
java.lang.Class pClass)
Gets the next value of a field for which the auto-increment value is true. |
void |
FieldIncrementor.setLastValue(Field pField,
java.lang.Object pLastValue)
Sets the last value of a field for which the auto-increment value is true. |
void |
FieldIncrementor.setNextValue(Field field,
java.lang.Object nextValue)
Sets the next value of a field for which the auto-increment value is true. |
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. |
Uses of Field in planetj.database.fielddescriptors |
Methods in planetj.database.fielddescriptors that return Field | |
Field |
FieldDescriptorRow.createDefaultField()
Creates a default field for this field descriptor. |
Field |
FieldDescriptorRow.createDefaultField(java.lang.String pFieldName)
Creates a default field for this field descriptor. |
Field |
FieldDescriptorRow.createField()
Creates a new field of the appropriate type |
Field |
FieldDescriptorRow.createField(java.lang.String pFieldName)
Creates a new field of the appropriate type |
Field |
FieldDescriptorRow.createField(java.lang.String pFieldName,
java.lang.Class fieldClass)
Creates a new field of the specified type |
Field |
FieldDescriptorRow.getOwnerIdField()
Returns the Owner Id Field |
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. |
Methods in planetj.database.fielddescriptors with parameters of type Field | |
boolean |
TableDescriptor.isFieldApplicable(Field fld,
ExecutingContext ec)
|
boolean |
TableDescriptor.isFieldRequired(Field field,
ExecutingContext pContext)
|
java.lang.String |
TableDescriptor.getPossibleValueClass(Field field)
|
int |
TableDescriptor.getFieldDisplayOrder(Field field)
|
java.lang.String |
TableDescriptor.getFieldExternalName(Field field)
|
java.lang.String |
TableDescriptor.getFieldFieldSetName(Field field)
|
java.lang.String |
FieldDescriptorRow.getAutoUpdateStringValue(Field field,
ExecutingContext pEc)
Gets the auto update String parameter for the described fields. |
java.lang.String |
FieldDescriptorRow.getDefaultStringValue(Field field,
ExecutingContext pEc)
Get the string parameter specified as the default value. |
int |
FieldDescriptorRow.getFieldDisplayOrder(Field field)
|
java.lang.String |
FieldDescriptorRow.getFieldFieldSetName(Field field)
|
RowCollection |
FieldDescriptorRow.getPossibleValues(Field field)
Returns a RowCollection containing the possible values for the Field. |
protected java.lang.String |
FieldDescriptorRow.getUserFieldStringValue(Field field,
java.lang.String fdFieldName,
ExecutingContext ec)
Gets the default or auto update String parameter for the described fields. |
boolean |
FieldDescriptorRow.isAuthorizedForEdit(Field field,
Row row,
ExecutingContext ec)
Check to see if Field in Row can be edited. |
boolean |
FieldDescriptorRow.isAuthorizedForRead(Field field,
Row row,
ExecutingContext ec)
Check to see if the given Field in the given Row can be read. |
boolean |
FieldDescriptorRow.isFieldApplicable(Field fld,
ExecutingContext ec)
|
Row |
FieldDescriptorRow.statusChanged(Field field,
ExecutingContext ec)
|
static FieldDescriptorRow |
FieldDescriptorManager.createFDFromDBMetaData(java.sql.Connection pConnection,
Field pField)
Create a field descriptor for the specified field name in the table from the given connection. |
static FieldDescriptorRow |
FieldDescriptorManager.createFDFromDBMetaData(Field pField)
Create a field descriptor for the specified Field. |
static FieldDescriptorRow |
FieldDescriptorManager.getFieldDescriptor(Field pField)
Return an IFieldDescriptor for the given Field, if it doesn't exist then create it from DatabaseMetaData. |
Uses of Field in planetj.database.possiblevalues |
Methods in planetj.database.possiblevalues with parameters of type Field | |
java.lang.String |
UserMessageRow.getPossibleValuesKey(Field field)
Gets the possible values key for the given field |
java.lang.String |
UserMessageRow.getFieldFieldSetName(Field field)
|
boolean |
UserMessageRow.isFieldRequired(Field field,
ExecutingContext pContext)
|
boolean |
UserMessageRow.isFieldDisplayable(Field field,
ExecutingContext ec)
|
boolean |
UserMessageRow.isFieldApplicable(Field fld,
ExecutingContext ec)
|
java.lang.String |
PossibleValueRow.getPossibleValuesKey(Field field)
Gets the possible values key for the given field |
java.lang.String |
PossibleValueRow.getFieldFieldSetName(Field field)
|
boolean |
PossibleValueRow.isFieldRequired(Field field,
ExecutingContext pContext)
|
boolean |
PossibleValueRow.isFieldDisplayable(Field field,
ExecutingContext ec)
|
boolean |
PossibleValueRow.isFieldApplicable(Field fld,
ExecutingContext ec)
|
Uses of Field in planetj.database.report |
Methods in planetj.database.report with parameters of type Field | |
boolean |
ReportBreakRow.hasPossibleValuesKeyClassOrOp(Field field)
|
Uses of Field in planetj.database.sql |
Methods in planetj.database.sql that return Field | |
Field |
SQLComparison.getField(int index)
Deprecated. (6/11/2003 8:11:05 AM) This method will not allow setting the Field's default value from a user property. Replaced by getField(int, ExecutingContext) |
Field |
SQLComparison.getField(int index,
ExecutingContext ec)
Gets this Field corresponding to one of this comparison's parameters. |
Uses of Field in planetj.dataengine.action |
Methods in planetj.dataengine.action that return Field | |
Field |
NamedFieldAction.getField()
Gets the Field tied to this action. |
Methods in planetj.dataengine.action with parameters of type Field | |
java.lang.Object |
NamedFieldAction.handleFieldAction(Field field,
java.lang.Object o,
ExecutingContext ec)
Subclasses need to provide logic to handle the action they wish to perform. |
Constructors in planetj.dataengine.action with parameters of type Field | |
NamedFieldAction(java.lang.String actionName,
Field actionObject)
|
|
FieldActionRequest(AbstractAction action,
Field field,
HttpServletRequest request,
HttpServletResponse response)
|
Uses of Field in planetj.dataengine.application |
Methods in planetj.dataengine.application that return Field | |
Field |
IOwner.getOwnerIdField()
Returns the Owner Id for this Row. |
Field |
Application.getOwnerIdField()
Returns the Owner Id Field |
Uses of Field in planetj.dataengine.autorun |
Methods in planetj.dataengine.autorun with parameters of type Field | |
java.lang.Object |
AutoRunOperation.execute(Field field,
Row row,
ExecutingContext ec,
boolean checkConnectionPool)
Child classes should override for functionality Creation date: (4/23/2003 7:40:14 AM) |
Uses of Field in planetj.dataengine.operation |
Methods in planetj.dataengine.operation that return Field | |
Field |
Operation.getOwnerIdField()
Returns the Owner Id Field |
Methods in planetj.dataengine.operation with parameters of type Field | |
protected java.util.List |
UserAuthorizationOperation.getUserNamesFromResults(Field field,
Row row,
ExecutingContext ec)
Creation date: (4/25/2003 8:50:20 AM) |
boolean |
UserAuthorizationOperation.isAuthorized(Field field,
Row row,
ExecutingContext ec)
|
boolean |
UserAuthorizationOperation.isFieldApplicable(Field fld,
ExecutingContext ec)
Tests if a field is applicable in the current scenario |
boolean |
UserAuthorizationListOperation.isAuthorized(Field field,
Row row,
ExecutingContext ec)
|
boolean |
UserAuthorizationListOperation.isFieldApplicable(Field fld,
ExecutingContext ec)
Tests if a field is applicable in the current scenario |
boolean |
UserAuthenticationListOperation.isAuthorized(Field field,
Row row,
ExecutingContext ec)
|
boolean |
RefererAuthorizationOperation.isFieldApplicable(Field fld,
ExecutingContext ec)
Tests if a field is applicable in the current scenario |
protected IOperationContext |
OperationBuilderCreateDataInquiryOp.getNewContextInternal(Field field,
Row row,
ExecutingContext ec)
|
IMagicRequest |
Operation.createMagicRequest(Field basedOnField,
Row basedOnRow,
HttpServletRequest request,
HttpServletResponse response)
Creates a MagicRequest for viewing this operation. |
IMagicRequest |
Operation.createMagicRequest(java.lang.String id,
Field basedOnField,
Row basedOnRow,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. id no longer needed - used createMagicRequest(Field, Row, request, response) |
java.lang.Object |
Operation.execute(Field field)
Executes this operation from the given executing context and Field. |
java.lang.Object |
Operation.execute(ExecutingContext ec,
Field field)
Executes this operation from the given executing context and Field. |
java.lang.Object |
Operation.execute(Field field,
Row row,
ExecutingContext ec)
Executes this operation from the given executing context and Row. |
java.lang.Object |
Operation.getFieldDefaultValue(Field field,
ExecutingContext ec)
|
IOperationContext |
Operation.getNewContext(Field field,
Row row,
ExecutingContext ec)
Gets a new IOperationContext for this operation. |
protected IOperationContext |
Operation.getNewContextInternal(Field field,
Row row,
ExecutingContext ec)
Gets a new IOperationContext for this operation. |
Row |
Operation.statusChanged(Field pField,
ExecutingContext ec)
Invoked when a status change takes place on of this Row's fields. |
boolean |
IAuthorizationOperation.isAuthorized(Field field,
Row row,
ExecutingContext ec)
|
java.lang.Object |
HTMLOperation.execute(Field field,
Row row,
ExecutingContext ec)
Executes this operation from the given executing context and Row and returns HTML code for this Operation. |
protected IOperationContext |
HTMLOperation.getNewContextInternal(Field field,
Row row,
ExecutingContext ec)
Gets a new IOperationContext for this operation. |
boolean |
HTMLOperation.isFieldApplicable(Field fld,
ExecutingContext ec)
Tests if a field is applicable in the current scenario |
boolean |
AssociatedExecutionGroupOperation.isFieldApplicable(Field fld,
ExecutingContext ec)
|
Uses of Field in planetj.dataengine.parameter |
Methods in planetj.dataengine.parameter that return Field | |
Field |
SQLPromptParameter.getDisplayField(ExecutingContext ec)
Gets the field to use when displaying a prompt to the user. |
Field |
RequestPromptParameter.getDisplayField()
Deprecated. (6/11/2003 7:43:20 AM) This method will not allow setting the Field's default value from a user property. Replaced by getDisplayField(ExecutingContext) |
Field |
RequestPromptParameter.getDisplayField(ExecutingContext ec)
Gets the field to use when displaying a prompt to the user. |
Field |
IDisplayParameter.getDisplayField()
Deprecated. (6/11/2003 7:43:20 AM) This method will not allow setting the Field's default value from a user property. Replaced by getDisplayField(ExecutingContext) |
Field |
IDisplayParameter.getDisplayField(ExecutingContext ec)
Gets the field to use when displaying a prompt to the user. |
Uses of Field in planetj.dataengine.possiblevalues |
Methods in planetj.dataengine.possiblevalues with parameters of type Field | |
Row |
PVPagingRequest.statusChange(Field field,
Row row,
ExecutingContext ec)
|
protected IOperationContext |
PossibleValuesOperation.getNewContextInternal(Field field,
Row row,
ExecutingContext ec)
|
Constructors in planetj.dataengine.possiblevalues with parameters of type Field | |
PVPagingRequest(Field field,
boolean isNext,
HttpServletRequest request,
HttpServletResponse response)
Constructor |
Uses of Field in planetj.dataengine.sqloperation |
Methods in planetj.dataengine.sqloperation with parameters of type Field | |
java.lang.String |
TabbedOperation.getPossibleValuesKey(Field field)
|
boolean |
TabbedOperation.isFieldRequired(Field pField,
ExecutingContext pContext)
|
java.lang.Object |
SQLOperation.execute(Field field,
Row pRow,
ExecutingContext pEc)
Returns a result set that results from the SQL query Creation date: (4/23/2003 7:40:14 AM) |
java.lang.Object |
SQLOperation.execute(Field field,
Row row,
ExecutingContext ec,
boolean checkConnectionPool)
Returns a result set that results from the SQL query Creation date: (4/23/2003 7:40:14 AM) |
protected IOperationContext |
SQLOperation.getNewContextInternal(Field field,
Row row,
ExecutingContext ec)
|
ApplicationSQLContext |
SQLOperation.getNewSQLOperationContext(Field field,
Row row,
ExecutingContext ec)
Creates and returns a new SQLContext to perform this SQLOperation's query. |
boolean |
SQLOperation.isFieldApplicable(Field fld,
ExecutingContext ec)
Tests if a field is applicable in the current scenario |
protected IOperationContext |
JavaOperation.getNewContextInternal(Field field,
Row row,
ExecutingContext ec)
|
Uses of Field in planetj.dataengine.theme |
Methods in planetj.dataengine.theme that return Field | |
Field |
Theme.getOwnerIdField()
Returns the Owner Id Field |
Methods in planetj.dataengine.theme with parameters of type Field | |
java.lang.Object |
Theme.getFieldDefaultValue(Field field,
ExecutingContext executingContext)
|
Uses of Field in planetj.formatters |
Methods in planetj.formatters with parameters of type Field | |
boolean |
VerticalGraphFormatter.isPrepareFieldValue(Field field,
ExecutingContext ec)
|
java.lang.String |
VerticalGraphFormatter.formatValue(java.lang.Object value,
Field f)
|
java.lang.String |
StringFormatter.formatValue(java.lang.Object value,
Field f)
|
boolean |
SkypeTelephoneFormatter.isPrepareFieldValue(Field field,
ExecutingContext ec)
|
java.lang.String |
SkypeTelephoneFormatter.formatValue(java.lang.Object value,
Field f)
|
java.lang.String |
ProperCaseFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in. |
java.lang.String |
PhoneNumberFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in. |
java.lang.String |
PercentageFormatter.formatValue(java.lang.Object value,
Field f)
|
java.lang.String |
NumberFormatter.formatValue(java.lang.Object value,
Field field)
Formats a number by adding commas ',' where appropriate. |
java.lang.String |
NumberCommaFormatter.formatValue(java.lang.Object value,
Field field)
Deprecated. Formats a number by adding commas ',' where appropriate. |
java.lang.String |
NegativeCurrencyFormatter.formatValue(java.lang.Object value,
Field field)
Deprecated. |
java.lang.String |
MonthFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in. |
java.lang.String |
InchesFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in by including the String '"' after the value for the number of inches. |
java.lang.String |
InchesAbbreviationFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in by including the String "in." after the value for the number of inches. |
java.lang.String |
IInputFormatter.formatInputValue(java.lang.Object value,
Field field)
Gets the display value to show in an input field |
java.lang.String |
IFormatter.formatValue(java.lang.Object value,
Field field)
Formats a value for display. |
boolean |
IFormatter.isPrepareFieldValue(Field field,
ExecutingContext ec)
Checks whether or not this fields value should be prepared. |
boolean |
HorizontalGraphFormatter.isPrepareFieldValue(Field field,
ExecutingContext ec)
|
java.lang.String |
HorizontalGraphFormatter.formatValue(java.lang.Object value,
Field f)
|
java.lang.String |
FeetFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in by including the String "'" after the value, for the number of feet. |
java.lang.String |
FeetAbbreviationFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in by including the String "ft." after the value, for the number of feet. |
java.lang.String |
DecimalFeetFormatter.formatValue(java.lang.Object value,
Field f)
Formats the Object passed in by including the String "'" after the value, for the number of feet. |
java.lang.String |
CurrencyFormatter.formatValue(java.lang.Object value,
Field field)
This method formats a number (or a String representation of the number that has no commas) to be a string that represents the currency format of the current locale. |
java.lang.String |
CurrencyCommaFormatter.formatValue(java.lang.Object pNum,
Field f)
Deprecated. |
boolean |
AbstractFormatter.isPrepareFieldValue(Field field,
ExecutingContext ec)
|
Uses of Field in planetj.html |
Methods in planetj.html that return Field | |
Field |
HTMLField.getField()
Returns the HTMLField's Field. |
Methods in planetj.html with parameters of type Field | |
static java.lang.StringBuffer |
JavaScriptManager.generateDatePicker(java.lang.StringBuffer sb,
java.lang.String id,
Field field,
HttpServletRequest req)
This will generate the DatePicker. |
static java.lang.StringBuffer |
JavaScriptManager.generateValidationFieldJavaScript(java.lang.StringBuffer sb,
Field pField,
HttpServletRequest req,
HttpServletResponse res)
|
static java.lang.StringBuffer |
JavaScriptManager.generateValidationFieldJavaScript(java.lang.StringBuffer sb,
Field pField,
boolean fieldHasPossibleValues,
HttpServletRequest req,
HttpServletResponse res)
This will generate the java script for a field. |
static java.lang.StringBuffer |
HTMLTextArea.appendTextArea(java.lang.String id,
Field field,
int cols,
int rows,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguements. |
java.lang.StringBuffer |
HTMLTable.appendField(Field field,
boolean isLeft,
boolean isTop,
int colspan,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
java.lang.StringBuffer |
HTMLTable.appendFieldInput(java.lang.String id,
Field field,
int size,
int size2,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Method should be called when appending a Field's input. |
boolean |
HTMLTable.isFieldEditable(Field field,
Row row,
ExecutingContext ec,
HttpServletRequest request)
Tests to see if the specified field is editable in the table. |
static java.lang.StringBuffer |
HTMLSelect.appendRadioButtonSelect(java.lang.String id,
Field field,
int size,
boolean mulitpleSelection,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. (6/27/2003 5:07:12 PM) this method needs to be coded.... currently it doesn't generate a radio button select |
static java.lang.StringBuffer |
HTMLSelect.appendRadioButtonSelect(java.lang.String id,
Field field,
int size,
boolean mulitpleSelection,
boolean forceValueIntoList,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
!!C MT (4/23/2003 1:10:27 PM) This class is almost the same as the planetj.html.HTMLSelect.appendSelect and should be revised when the HTML design of WOW is reworked. |
static java.lang.StringBuffer |
HTMLSelect.appendSelect(java.lang.String id,
Field field,
int size,
boolean mulitpleSelection,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLSelect.appendSelect(java.lang.String id,
Field field,
int size,
boolean mulitpleSelection,
boolean forceValueIntoList,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
protected java.lang.StringBuffer |
HTMLRowDetails.appendOperation(Field pField,
Operation pOp,
int columnSpan,
java.lang.StringBuffer html,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
Appends a Operation's entire text to the StringBuffer containing the generated HTML code. |
protected int |
HTMLRowDetails.getFieldDisplaySize(Field field)
Gets the width of the field as it will appear on the screen when it is rendered by this object |
protected int |
HTMLRowDetails.getMaxFieldDisplaySize(Field pField)
Gets the width of the field as it will appear on the screen when it is rendered by this object |
boolean |
HTMLRowDetails.isSkipField(boolean isTabParent,
Field field,
HttpServletRequest req)
Tests if the field should be skipped (not rendered on the screen) |
static java.lang.StringBuffer |
HTMLRadioButtonPVSelect.appendRadioButtonPVSelect(java.lang.String id,
Field field,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. |
static java.lang.StringBuffer |
HTMLRadioButtonPVSelect.appendRadioButtonInput(java.lang.String id,
Field field,
boolean mulitpleSelection,
boolean forceValueIntoList,
boolean editable,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
ExecutingContext ec,
HttpServletRequest request,
HttpServletResponse response)
Generates set of radio button inputs |
static boolean |
HTMLItem.setSelected(java.util.List htmlItems,
Field valueToSelect)
Looks through a list of HTMLItems and sets the selected property on each one. |
static java.lang.StringBuffer |
HTMLInput.appendCheckbox(java.lang.String id,
Field field,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML checkbox input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLInput.appendClass(int type,
Field field,
FieldDescriptorRow fd,
java.lang.StringBuffer html,
ExecutingContext ec)
Appends an inputs class attribute to the given buffer depending upon the input type. |
static java.lang.StringBuffer |
HTMLInput.appendFileInput(java.lang.String id,
Field field,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML file input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLInput.appendHiddenInput(java.lang.String id,
Field field,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML checkbox input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLInput.appendInput(java.lang.String id,
Field field,
int size,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates an HTML input for the given Field. |
static java.lang.StringBuffer |
HTMLInput.appendPasswordInput(java.lang.String id,
Field field,
int size,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLInput.appendRadioButton(java.lang.String id,
Field field,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML radio input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLInput.appendRadioButton(java.lang.String id,
Field field,
boolean setValueAsDisplayValue,
boolean appendExtractableHiddenField,
int selectedDefault,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML radio input for the given Field and arguements. |
protected static java.lang.StringBuffer |
HTMLInput.appendRadioButtonGroup(java.lang.String id,
Field field,
java.util.List buttons,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
ExecutingContext ec,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML radio input for the given Field and arguments. |
static java.lang.StringBuffer |
HTMLInput.appendTextInput(java.lang.String id,
Field field,
int size,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguments. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateComboBox(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. |
static java.lang.String |
HTMLGenerator.generateField(Field field,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. replaced with HTMLField.appendDisplayValue(.......) |
static java.lang.String |
HTMLGenerator.generateInput(Field fld,
int size,
java.lang.String attributes,
int x,
int y,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. x and y are no longer used, replaced with appendInput(Field, int, String, int, int, StringBuffer, HttpServletRequest, HttpServletResponse) |
static java.lang.String |
HTMLGenerator.generateInput(Field fld,
int size,
java.lang.String attributes,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. replaced with HTMLField.appendInput(....) |
static java.lang.String |
HTMLGenerator.generateInput(Field fld,
java.lang.String attributes,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. replaced with HTMLField.appendInput(....) |
static java.lang.String |
HTMLGenerator.generateLabel(Field fld,
HttpServletRequest req,
HttpServletResponse res)
Returns a String representing the Field's external column name as a bold label. |
static java.lang.String |
HTMLGenerator.generateLabelAndField(Field fld,
HttpServletRequest req,
HttpServletResponse res)
Returns a String representing HTML for a Field and also its label. |
static java.lang.String |
HTMLGenerator.generateLabelAndInput(Field fld,
int size,
java.lang.String inputAttributes,
HttpServletRequest req,
HttpServletResponse res)
Returns a String representing HTML for input (with specified size) for a Field and also its label. |
static java.lang.String |
HTMLGenerator.generateLabelAndInput(Field fld,
java.lang.String inputAttributes,
HttpServletRequest req,
HttpServletResponse res)
Returns a String representing HTML for input of a Field and also its label. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
java.lang.String dspFldName,
RowCollection rowCol,
int size,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
int selectionMode,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
java.lang.String selectedVal,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateList(Field fld,
java.lang.String attributes,
java.lang.String fldName,
RowCollection rowCol,
int size,
HttpServletRequest req,
HttpServletResponse res)
Returns a String for a HTML list. |
static java.lang.String |
HTMLGenerator.generateRadio(Field fld,
java.lang.String attributes,
HttpServletRequest req,
HttpServletResponse res)
Deprecated. replaced by HTMLInput.appendRadioButton(....) |
static java.lang.StringBuffer |
HTMLField.appendAssociation(Field field,
Operation operation,
java.lang.String linkText,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendAssociation(Field field,
Operation operation,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendAutoPopulateButton(java.lang.String id,
Field field,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLField.appendCheckbox(java.lang.String id,
Field field,
java.lang.String attributes,
int x,
int y,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. replaced with HTMLInput.appendCheckbox(.....) |
static java.lang.StringBuffer |
HTMLField.appendCheckbox(java.lang.String id,
Field field,
java.lang.String attributes,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. replaced with HTMLInput.appendCheckbox(.....) |
static java.lang.StringBuffer |
HTMLField.appendCheckbox(Field field,
java.lang.String attributes,
int row,
int column,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. replaced with HTMLInput.appendCheckbox(.....) |
static java.lang.StringBuffer |
HTMLField.appendCheckbox(Field field,
java.lang.String attributes,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. replaced with HTMLInput.appendCheckbox(.....) |
static java.lang.StringBuffer |
HTMLField.appendDisplayValue(java.lang.String id,
Field field,
java.lang.StringBuffer originalHTML,
HttpServletRequest request,
HttpServletResponse response)
Returns a StringBuffer representing the Field's value in HTML text. |
static java.lang.StringBuffer |
HTMLField.appendDisplayValue(Field field,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Returns a StringBuffer representing the Field's value in HTML text. |
static java.lang.StringBuffer |
HTMLField.appendFileUploadButton(java.lang.String id,
Field field,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLField.appendHelp(Field field,
java.lang.StringBuffer html)
Appends help text onto the StringBuffer. |
static java.lang.StringBuffer |
HTMLField.appendHTMLComponent(java.lang.String id,
Field field,
int size,
int size2,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendInput(java.lang.String id,
Field field,
int size,
int size2,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendInput(java.lang.String id,
Field field,
int size,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendInput(Field field,
int size,
int size2,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendInput(Field field,
int size,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendInput(Field field,
java.lang.String attributes,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendLabel(Field field,
int maxLength,
boolean labelFromValue,
boolean includeColon,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendLabel(Field field,
boolean includeColon,
boolean includeExceptionDetails,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendLabel(Field field,
boolean includeColon,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
|
static java.lang.StringBuffer |
HTMLField.appendLabelExceptionCheckmark(Field field,
java.lang.StringBuffer html)
|
static java.lang.StringBuffer |
HTMLField.appendPossibleValuesSearch(java.lang.String id,
Field field,
int size,
java.lang.String attributes,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLField.appendStatusChangeCall(Field fld,
java.lang.String javaScriptEvent,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
HttpServletRequest req,
HttpServletResponse res,
java.lang.StringBuffer sb)
Appends a status change call to the given string buffer. |
static java.lang.String |
HTMLField.generateDisplayValue(Field field,
HttpServletRequest request,
HttpServletResponse response)
|
java.lang.String |
HTMLField.generateLabelDisplayDetails(Field pField)
This will generate display details if it is turned on. |
static java.lang.StringBuffer |
HTMLField.appendOperation(Field pField,
Operation pOp,
java.lang.StringBuffer html,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
Appends a Operation's entire text to the StringBuffer containing the generated HTML code. |
HTMLField |
HTMLField.setField(Field fld)
Sets the HTMLField's Field. |
protected static boolean |
HTMLElement.isDisableField(Field fld,
ExecutingContext ec,
HttpServletRequest req)
Determines if a field should be disabled or not |
static boolean |
HTMLElement.isDisplayField(Field fld,
ExecutingContext ec,
HttpServletRequest req)
Determines if a field should be displayed or not |
static java.lang.StringBuffer |
HTMLEditableSelect.appendEditableSelect(java.lang.String id,
Field field,
boolean displayAsTextArea,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguements. |
static java.lang.StringBuffer |
HTMLEditableSelect.appendEditableSelect(java.lang.String id,
Field field,
int displayWidth,
boolean displayAsTextArea,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Generates a HTML text input for the given Field and arguements. |
java.lang.StringBuffer |
HTMLComparisonInput.appendInput(Field field,
int unNamedIndex,
SQLContext context,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. use HTMLParameterInput.appendInput |
java.lang.String |
FieldHTMLSelect.generate(Field field,
java.lang.String rcNavKey,
java.lang.String rowNavKey,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. y & x are no longer used, replaced with generate(Field, HttpServletRequest, HttpServletResponse) |
java.lang.String |
FieldHTMLSelect.generate(Field field,
HttpServletRequest request,
HttpServletResponse response)
Deprecated. |
static java.lang.StringBuffer |
AbstractParameterInputGenerator.appendEditFDQuickLink(Field field,
int spacesBeforeLink,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Convenience method to include an edit FD quick link for the given field. |
Constructors in planetj.html with parameters of type Field | |
HTMLField(Field fld)
Creates a new HTMLTableProperties object and sets its table id. |
|
FieldHTMLSelect(Field fld)
Deprecated. |
Uses of Field in planetj.magic |
Methods in planetj.magic that return Field | |
Field |
IMagicRequest.getBaseField()
Return the Base Field of this Request. |
Field |
AbstractSelectionRequest.getSelectedField(HttpServletRequest request)
|
Field |
AbstractMagicRequest.getBaseField()
Get the based on Row for this Request. |
Methods in planetj.magic with parameters of type Field | |
void |
ViewSelectionAssociationRequest.executeOperation(Field field,
Operation operation,
HttpServletRequest request,
HttpServletResponse response,
DataEngineServlet servlet)
Execute method comment. |
Row |
StatusChangeRequest.statusChange(Field field,
Row row,
ExecutingContext ec)
|
void |
IMagicRequest.setBaseField(Field field)
Set the based on Row for this Request. |
void |
BlobDownloadRequest.executeOperation(Field field,
Operation operation,
HttpServletRequest request,
HttpServletResponse response,
DataEngineServlet servlet)
|
void |
AssociationRequest.executeOperation(Field field,
Operation operation,
HttpServletRequest request,
HttpServletResponse response,
DataEngineServlet servlet)
|
void |
AssociationRequest.executeOperation(Field field,
Row row,
Operation operation,
HttpServletRequest request,
HttpServletResponse response,
DataEngineServlet servlet)
|
void |
AbstractMagicRequest.setBaseField(Field pBaseField)
Set the based on Field for this Request. |
Constructors in planetj.magic with parameters of type Field | |
StatusChangeRequest(Field field,
HttpServletRequest request,
HttpServletResponse response)
Constructor |
|
PossibleValuesSelectorRequest(Field field,
HttpServletRequest request,
HttpServletResponse response)
Constructor |
Uses of Field in planetj.possiblevalues |
Methods in planetj.possiblevalues with parameters of type Field | |
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. |
protected SQLContext |
DistinctPV.getPVContext(Field field)
Gets the SQLContext to use for a PV query |
protected SQLContext |
DistinctCachePV.getPVContext(Field pField)
Gets the SQLContext to use for a PV query |
RowCollection |
AuthorizationOperationsPV.getPossibleValues(Field field)
Gets a RowCollection of Possible Value Authorization Operations. |
RowCollection |
AssociationSQLOperationsPV.getPossibleValues(Field field)
Gets a RowCollection of Possible Value SQLOperations for the given Field's Row's owner. |
RowCollection |
AbstractPV.getPossibleValues(Field field)
It is recommended that your possible value class use the DataEngine.getRows() methods to return a RowCollection. |
Uses of Field in planetj.processes.logon |
Methods in planetj.processes.logon that return Field | |
Field |
SignOnAndRegistrationRow.getOwnerIdField()
Returns the Owner Id Field |
Field |
SignOnAndRegistrationRow.getPasswordField()
This method will use the usage ids to find the Password field. |
Field |
SignOnAndRegistrationRow.getUserIdField()
This method will use the usage ids to find the User id field. |
Uses of Field in planetj.row |
Methods in planetj.row with parameters of type Field | |
java.lang.String |
FieldValueStyleRow.getFieldStyleClass(Field field,
java.lang.String value,
java.lang.String displayValue,
ExecutingContext ec)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |