A C D E F G I M N O P R S T V

A

add(PersistenceSession, ValueObject) - Method in interface com.ivata.mask.persistence.PersistenceManager
Store a new value object.
add(ValidationError) - Method in class com.ivata.mask.validation.ValidationErrors
Add a new ValidationError to the list.
addAll(ValidationErrors) - Method in class com.ivata.mask.validation.ValidationErrors
Add all elements of another ValidationErrors instance to the list.
addExcludedFieldName(String) - Method in class com.ivata.mask.group.GroupImpl
Add the name of a field to exclude from this mask group.
addField(Field) - Method in class com.ivata.mask.group.GroupImpl
Add a field definition to this group.
addFilter(Filter) - Method in class com.ivata.mask.group.GroupImpl
Add a filter to the list.
addFirstFieldName(String) - Method in class com.ivata.mask.group.GroupImpl
Add the identifier for one of the first fields in the mask.
addIncludePath(String) - Method in class com.ivata.mask.MaskImpl
Refer to Mask.getIncludePaths().
addIncludedFieldName(String) - Method in class com.ivata.mask.group.GroupImpl
Add the name of an included field.
addLastFieldName(String) - Method in class com.ivata.mask.group.GroupImpl
Add the identifier for one of the last fields in the mask.
amend(PersistenceSession, ValueObject) - Method in interface com.ivata.mask.persistence.PersistenceManager
Amend a previously stored value object, after changes have been made.

C

ClassFieldValueConvertor - class com.ivata.mask.field.ClassFieldValueConvertor.
Convert an object representing a class.
ClassFieldValueConvertor() - Constructor for class com.ivata.mask.field.ClassFieldValueConvertor
 
canAdd(String, Class) - Method in class com.ivata.mask.persistence.right.DefaultPersistenceRights
Refer to PersistenceRights.canAdd(java.lang.String, java.lang.Class).
canAdd(String, Class) - Method in interface com.ivata.mask.persistence.right.PersistenceRights
Discover whether or not the owner of the current persistence session has the right to add a value object of the given type.
canAmend(String, ValueObject) - Method in class com.ivata.mask.persistence.right.DefaultPersistenceRights
Refer to PersistenceRights.canAmend(java.lang.String, com.ivata.mask.valueobject.ValueObject).
canAmend(String, ValueObject, String) - Method in class com.ivata.mask.persistence.right.DefaultPersistenceRights
Refer to PersistenceRights.canAmend(String, ValueObject, String).
canAmend(String, ValueObject) - Method in interface com.ivata.mask.persistence.right.PersistenceRights
Discover whether or not the owner of the current persistence session has the right to change this value object generally.
canAmend(String, ValueObject, String) - Method in interface com.ivata.mask.persistence.right.PersistenceRights
Discover whether or not the owner of the current persistence session has the right to change a specific field on this value object.
canRemove(String, ValueObject) - Method in class com.ivata.mask.persistence.right.DefaultPersistenceRights
Refer to PersistenceRights.canRemove(java.lang.String, com.ivata.mask.valueobject.ValueObject).
canRemove(String, ValueObject) - Method in interface com.ivata.mask.persistence.right.PersistenceRights
Discover whether or not the owner of the current persistence session has the right to remove this value object.
cancel() - Method in interface com.ivata.mask.persistence.PersistenceSession
Cancel all operations performed in this session.
close() - Method in interface com.ivata.mask.persistence.PersistenceSession
Commit any changes made in this transaction to the data store.
com.ivata.mask - package com.ivata.mask
 
com.ivata.mask.field - package com.ivata.mask.field
 
com.ivata.mask.field.date - package com.ivata.mask.field.date
 
com.ivata.mask.field.number - package com.ivata.mask.field.number
 
com.ivata.mask.field.valueobject - package com.ivata.mask.field.valueobject
 
com.ivata.mask.filter - package com.ivata.mask.filter
 
com.ivata.mask.group - package com.ivata.mask.group
 
com.ivata.mask.persistence - package com.ivata.mask.persistence
 
com.ivata.mask.persistence.right - package com.ivata.mask.persistence.right
 
com.ivata.mask.validation - package com.ivata.mask.validation
 
com.ivata.mask.valueobject - package com.ivata.mask.valueobject
 
convertFromString(Class, String) - Method in class com.ivata.mask.field.ClassFieldValueConvertor
Convert a class value from a string representing its name.
convertFromString(Class, String) - Method in class com.ivata.mask.field.FieldValueConvertor
Convert a value from a string.
convertFromString(Class, String) - Method in class com.ivata.mask.field.date.DateFieldValueConvertor
Convert a date value from a string.
convertPrimitiveType(Class) - Static method in class com.ivata.mask.field.DefaultFieldValueConvertorFactory
Convert a primitive type (such as int, char) to the wrapper class associated with it (such as Integer, Character).

D

DEFAULT_DATE_PATTERN - Static variable in class com.ivata.mask.field.FieldValueConvertorConstants
Default pattern used to convert dates.
DEFAULT_NUMBER_PATTERN - Static variable in class com.ivata.mask.field.FieldValueConvertorConstants
Default pattern used to convert numbers.
DateFieldValueConvertor - class com.ivata.mask.field.date.DateFieldValueConvertor.
Convert an object representing a date to a string.
DateFieldValueConvertor(String) - Constructor for class com.ivata.mask.field.date.DateFieldValueConvertor
Construct a new value convertor from the format pattern supplied.
DefaultFieldValueConvertorFactory - class com.ivata.mask.field.DefaultFieldValueConvertorFactory.
 
DefaultFieldValueConvertorFactory() - Constructor for class com.ivata.mask.field.DefaultFieldValueConvertorFactory
Constructor.
DefaultMaskFactory - class com.ivata.mask.DefaultMaskFactory.
This factory class is at the heart of ivata masks.
DefaultMaskFactory(FieldValueConvertorFactory) - Constructor for class com.ivata.mask.DefaultMaskFactory
Default constructor.
DefaultMaskFactory(String, String, FieldValueConvertorFactory) - Constructor for class com.ivata.mask.DefaultMaskFactory
Construct an instance of the factory with the default mask/screens provided.
DefaultPersistenceRights - class com.ivata.mask.persistence.right.DefaultPersistenceRights.
This default implementation of persistence rights always return true, to let you do everything!
DefaultPersistenceRights() - Constructor for class com.ivata.mask.persistence.right.DefaultPersistenceRights
 

E

ERROR_REQUEST_ATTRIBUTE - Static variable in class com.ivata.mask.field.FieldValueConvertorConstants
Request attribute name under which errors are stored.

F

Field - interface com.ivata.mask.field.Field.
Defines a single field within a mask or group of masks.
FieldImpl - class com.ivata.mask.field.FieldImpl.
This is the default implementation of an ivata masks field.
FieldImpl(Field, Field, MaskFactory) - Constructor for class com.ivata.mask.field.FieldImpl
Construct a field with the given parent or inherited field.
FieldValueConvertor - class com.ivata.mask.field.FieldValueConvertor.
Retrieve the value from a value object for a given field.
FieldValueConvertor() - Constructor for class com.ivata.mask.field.FieldValueConvertor
 
FieldValueConvertor.FieldValueException - exception com.ivata.mask.field.FieldValueConvertor.FieldValueException.
Wraps any error encountered when trying retrieve a field value via reflection.
FieldValueConvertor.FieldValueException(Throwable) - Constructor for class com.ivata.mask.field.FieldValueConvertor.FieldValueException
Construct a field value exception from another throwable.
FieldValueConvertor.FieldValueException(Throwable, String) - Constructor for class com.ivata.mask.field.FieldValueConvertor.FieldValueException
Construct a field value exception from another throwable.
FieldValueConvertorConstants - class com.ivata.mask.field.FieldValueConvertorConstants.
Stores constant/static values for MaskRequestProcessorand MaskTilesRequestProcessor.
FieldValueConvertorFactory - interface com.ivata.mask.field.FieldValueConvertorFactory.
Creates an appropriate field value convertor for a given property type.
Filter - interface com.ivata.mask.filter.Filter.
A mask (or group of masks) can filter its contents.
FilterImpl - class com.ivata.mask.filter.FilterImpl.
Refer to Filter.
FilterImpl(String, Class, Object) - Constructor for class com.ivata.mask.filter.FilterImpl
Constructor.
FinderException - exception com.ivata.mask.persistence.FinderException.
An instance of this class is thrown when we couldn't find what we were looking for.
FinderException(Class, Object, Throwable) - Constructor for class com.ivata.mask.persistence.FinderException
Create a new persistence exception with the given message and cause.
FinderException(String, Object[]) - Constructor for class com.ivata.mask.persistence.FinderException
Create a new persistence exception with the given message and cause.
findAll(PersistenceSession, Class) - Method in interface com.ivata.mask.persistence.PersistenceManager
Find all value objects in the system with the given class.
findByPrimaryKey(PersistenceSession, Class, Serializable) - Method in interface com.ivata.mask.persistence.PersistenceManager
Find a single value object with the unique identifier given.

G

Group - interface com.ivata.mask.group.Group.
Instances of this interface define a group of masks which share common field definitions and other characteristics.
GroupImpl - class com.ivata.mask.group.GroupImpl.
Implementation of Groupdefining a group of masks which share common field definitions and other characteristics.
GroupImpl(String) - Constructor for class com.ivata.mask.group.GroupImpl
Create a group with no parent.
GroupImpl(String, Group) - Constructor for class com.ivata.mask.group.GroupImpl
Create a mask with the specified parent.
getAllExcludedFieldNames() - Method in interface com.ivata.mask.group.Group
Get the field identifiers of all fields which have been excluded from this and its parents.
getAllExcludedFieldNames(Group) - Static method in class com.ivata.mask.group.GroupImpl
Implementation of getAllExcludedFieldNames().
getAllExcludedFieldNames() - Method in class com.ivata.mask.group.GroupImpl
Get the field names of all fields which have been excluded from this and its parents.
getAllFirstFieldNames() - Method in interface com.ivata.mask.group.Group
Get the field identifiers of all fields which should appear at the start of the group/mask, including those defined by its parent.
getAllFirstFieldNames(Group) - Static method in class com.ivata.mask.group.GroupImpl
Implementation of getAllFirstFieldNames().
getAllFirstFieldNames() - Method in class com.ivata.mask.group.GroupImpl
Get the field identifiers of all fields which should appear at the start of the group/mask, including those defined by its parent.
getAllLastFieldNames() - Method in interface com.ivata.mask.group.Group
Get the field identifiers of all fields which should appear at the end of the group/mask, including those defined by its parent.
getAllLastFieldNames(Group) - Static method in class com.ivata.mask.group.GroupImpl
Implementation of getAllLastFieldNames().
getAllLastFieldNames() - Method in class com.ivata.mask.group.GroupImpl
Get the field identifiers of all fields which should appear at the end of the group/mask, including those defined by its parent.
getBundle() - Method in class com.ivata.mask.validation.ValidationError
Get the message resource bundle associated with this error.
getChoiceProperties() - Method in interface com.ivata.mask.field.Field
If this field represents a combo (select) type, returns the choices as a Properties instance.
getChoiceProperties() - Method in class com.ivata.mask.field.FieldImpl
If this field represents a combo (select) type, returns the choices as a Properties instance.
getChoicePropertyKeys() - Method in interface com.ivata.mask.field.Field
If this field represents a combo (select) type, returns the choice keys as a List of String instances.
getChoicePropertyKeys() - Method in class com.ivata.mask.field.FieldImpl
If this field represents a combo (select) type, returns the choice keys as a List of String instances.
getConnection() - Method in interface com.ivata.mask.persistence.PersistenceSession
Access the data connection wrapped by this persistence session.
getDOClass() - Method in interface com.ivata.mask.Mask
Get the dependent object class associated with this mask.
getDOClass() - Method in class com.ivata.mask.MaskImpl
Get the dependent object class associated with this mask.
getDOClass() - Method in interface com.ivata.mask.field.Field
Get the data object class for this field, if appropriate.
getDOClass() - Method in class com.ivata.mask.field.FieldImpl
Get the data object class for this field, if appropriate.
getDefaultInputMask() - Method in class com.ivata.mask.DefaultMaskFactory
Get the name of the default mask/screen used for user input.
getDefaultInputMask() - Method in interface com.ivata.mask.MaskFactory
Get the name of the default mask/screen used for user input.
getDefaultListMask() - Method in class com.ivata.mask.DefaultMaskFactory
Get the name of the default mask/screen used for lists.
getDefaultListMask() - Method in interface com.ivata.mask.MaskFactory
Get the name of the default mask/screen used to list a base class.
getDefaultValue() - Method in interface com.ivata.mask.field.Field
Get the default value for this field.
getDefaultValue() - Method in class com.ivata.mask.field.FieldImpl
Get the default value for this field.
getDisplayValue() - Method in interface com.ivata.mask.valueobject.ValueObject
Get the string representation of this value object to show to the user.
getErrorKey() - Method in class com.ivata.mask.validation.ValidationError
Message key of the error which occurred, from the error message resources.
getErrors() - Method in class com.ivata.mask.validation.ValidationErrors
Contains all of the errors represented by the ValidationErrors instance.
getErrors() - Method in class com.ivata.mask.validation.ValidationException
Contains all of the errors which caused this exception to happen.
getExcludedFieldNames() - Method in interface com.ivata.mask.group.Group
Get the field ids which have been explicitly excluded from this group.
getExcludedFieldNames() - Method in class com.ivata.mask.group.GroupImpl
Get the field ids which have been explicitly excluded from this group.
getField(String) - Method in interface com.ivata.mask.group.Group
Default field definitions.
getField(String) - Method in class com.ivata.mask.group.GroupImpl
Default field definitions.
getField() - Method in class com.ivata.mask.validation.ValidationError
Get the field which contained an invalid value and caused the error.
getFieldValueConvertorForClass(Class) - Method in class com.ivata.mask.field.DefaultFieldValueConvertorFactory
Find the appropriate convertor for the field value class provided.
getFieldValueConvertorForClass(Class, Class) - Method in class com.ivata.mask.field.DefaultFieldValueConvertorFactory
Find the appropriate convertor for the field value class provided.
getFieldValueConvertorForClass(Class) - Method in interface com.ivata.mask.field.FieldValueConvertorFactory
Find the appropriate convertor for the field value class provided.
getFields() - Method in interface com.ivata.mask.Mask
Get all the fields to be displayed in this mask.
getFields() - Method in class com.ivata.mask.MaskImpl
Get all the fields which should be displayed/hidden (not excluded) in this mask, in order.
getFilters() - Method in interface com.ivata.mask.group.Group
Get all of the filters applied to this group, as a List of Filter instances.
getFilters() - Method in class com.ivata.mask.group.GroupImpl
Refer to Group.getFilters().
getFirstFieldNames() - Method in interface com.ivata.mask.group.Group
Get the ids of all fields which should appear at the start of masks in this group.
getFirstFieldNames() - Method in class com.ivata.mask.group.GroupImpl
Get the ids of all fields which should appear at the start of masks in this group.
getGroup(String) - Method in class com.ivata.mask.DefaultMaskFactory
Get a group definition referenced by its id.
getGroup(String) - Method in interface com.ivata.mask.MaskFactory
Get a group definition referenced by its id.
getIdString() - Method in interface com.ivata.mask.valueobject.ValueObject
Identifies this value object uniquely.
getIncludePaths() - Method in interface com.ivata.mask.Mask
For masks, you can include non-dynamically generated field layouts.
getIncludePaths() - Method in class com.ivata.mask.MaskImpl
Refer to Mask.getIncludePaths().
getIncludedFieldNames() - Method in interface com.ivata.mask.group.Group
By explicitly including fields in a mask, you can override fields excluded by one of its parents.
getIncludedFieldNames() - Method in class com.ivata.mask.group.GroupImpl
By explicitly including fields in a mask, you can override fields excluded by one of its parents.
getLabelKey() - Method in class com.ivata.mask.field.FieldImpl
 
getLastFieldNames() - Method in interface com.ivata.mask.group.Group
Get the ids of all fields which should appear at the end of masks in this group.
getLastFieldNames() - Method in class com.ivata.mask.group.GroupImpl
Get the ids of all fields which should appear at the end of masks in this group.
getMask(Class) - Method in class com.ivata.mask.DefaultMaskFactory
This will return the default input mask for the class provided.
getMask(Class, String) - Method in class com.ivata.mask.DefaultMaskFactory
Get a mask, identified by its class and name.
getMask(Field, Class) - Method in class com.ivata.mask.DefaultMaskFactory
This will return the default input mask for the class provided of the subclassed field.
getMask(Field, Class, String) - Method in class com.ivata.mask.DefaultMaskFactory
Get a mask, identified by its class and name.
getMask(Class, String) - Method in interface com.ivata.mask.MaskFactory
Get a mask, identified by its class and type.
getMask(Class) - Method in interface com.ivata.mask.MaskFactory
Get the default mask for a value object class.
getMask(Field, Class) - Method in interface com.ivata.mask.MaskFactory
Get a mask, identified by its parent field, and class.
getName() - Method in interface com.ivata.mask.field.Field
Id of just this field.
getName() - Method in class com.ivata.mask.field.FieldImpl
Id of just this field - equivalent to the field name.
getName() - Method in interface com.ivata.mask.group.Group
Get the identifier of this group.
getName() - Method in class com.ivata.mask.group.GroupImpl
Refer to Group.getName().
getObjectValue(Object, String, Object) - Method in class com.ivata.mask.field.FieldValueConvertor
Get the value of a named property within an object.
getParameters() - Method in class com.ivata.mask.validation.ValidationError
A list of error string parameters.
getParent() - Method in interface com.ivata.mask.field.Field
Get the field which contains this one.
getParent() - Method in class com.ivata.mask.field.FieldImpl
Get the field which contains this one.
getParent() - Method in interface com.ivata.mask.group.Group
Get the parent of this group, if any.
getParent() - Method in class com.ivata.mask.group.GroupImpl
Get the parent of this group, if any.
getPath() - Method in interface com.ivata.mask.field.Field
Return the full path to this field, including the names of parent fields separated by '.' characters.
getPath() - Method in class com.ivata.mask.field.FieldImpl
Return the full path to this field, including the ids of parent fields separated by '.' characters.
getPersistenceRights() - Method in interface com.ivata.mask.persistence.PersistenceManager
Get the rights object, which determines what a user can and can't do!
getPropertyClass() - Method in interface com.ivata.mask.filter.Filter
Get the class of the property.
getPropertyClass() - Method in class com.ivata.mask.filter.FilterImpl
Refer to Filter.getPropertyClass().
getPropertyName() - Method in interface com.ivata.mask.filter.Filter
Get the name of the property the filter is searching for.
getPropertyName() - Method in class com.ivata.mask.filter.FilterImpl
Refer to Filter.getPropertyName().
getResourceFieldPath() - Method in class com.ivata.mask.validation.ValidationError
Get the message resources field path associated with this field.
getStringValue(Object, String, String) - Method in class com.ivata.mask.field.FieldValueConvertor
Get the value of the field provided, in the value object supplied, and return the string equivalent.
getSystemSession() - Method in interface com.ivata.mask.persistence.PersistenceSession
Return a system-specific (i.e.
getType() - Method in interface com.ivata.mask.field.Field
Indicates what sort of data this field should hold.
getType() - Method in class com.ivata.mask.field.FieldImpl
Indicates what sort of data this field should hold.
getValue() - Method in interface com.ivata.mask.filter.Filter
Value the property must have to be matched.
getValue() - Method in class com.ivata.mask.filter.FilterImpl
Refer to Filter.getValue().
getValueObjectMask() - Method in interface com.ivata.mask.field.Field
If this field represents a value object, get the mask associated with this value object.
getValueObjectMask() - Method in class com.ivata.mask.field.FieldImpl
If this field represents a value object, get the mask associated with this value object.

I

isConfigured() - Method in class com.ivata.mask.DefaultMaskFactory
Discover whether or not this object has been configured.
isConfigured() - Method in interface com.ivata.mask.MaskFactory
Discover whether or not this object has been configured.
isDisplayOnly() - Method in interface com.ivata.mask.field.Field
Get whether or not this field can be amended.
isDisplayOnly() - Method in class com.ivata.mask.field.FieldImpl
Get whether or not this field can be amended.
isDisplayOnly() - Method in interface com.ivata.mask.group.Group
If true, only the values in this mask will be displayed.
isDisplayOnly() - Method in class com.ivata.mask.group.GroupImpl
If true, only the values in this mask will be displayed.
isEmpty() - Method in class com.ivata.mask.validation.ValidationErrors
Evaluates whether or not this object contains errors.
isHidden() - Method in interface com.ivata.mask.field.Field
Is this field hidden or displayed?
isHidden() - Method in class com.ivata.mask.field.FieldImpl
true if this field is hidden.
isMandatory() - Method in interface com.ivata.mask.field.Field
Is this field required or optional?
isMandatory() - Method in class com.ivata.mask.field.FieldImpl
Is this field is required or optional?
isOneToOne() - Method in interface com.ivata.mask.field.Field
If this field represents another value object, but the relationship with its container is one-to-one, then it can be included in the parent's mask directly.
isOneToOne() - Method in class com.ivata.mask.field.FieldImpl
If this field represents another value object, but the relationship with its container is one-to-one, then it can be included in the parent's mask directly.
isParentFirstFieldNamesReplaced() - Method in interface com.ivata.mask.group.Group
When first field identifiers are defined for a group, normally these are appended to the list of all parent group first field identifiers, i.e.
isParentFirstFieldNamesReplaced() - Method in class com.ivata.mask.group.GroupImpl
When first field identifiers are defined for a group, normally these are appended to the list of all parent group first field identifiers, i.e.
isParentLastFieldNamesReplaced() - Method in interface com.ivata.mask.group.Group
When last field identifiers are defined for a group, normally these are appended to the list of all parent group last field identifiers, i.e.
isParentLastFieldNamesReplaced() - Method in class com.ivata.mask.group.GroupImpl
When last field identifiers are defined for a group, normally these are appended to the list of all parent group last field identifiers, i.e.

M

Mask - interface com.ivata.mask.Mask.
Defines a single mask for display.
MaskFactory - interface com.ivata.mask.MaskFactory.
An instance of this interface is used to generate all masks and groups in the project.
MaskImpl - class com.ivata.mask.MaskImpl.
In the Masks display configuration, a mask extends a group to define which fields come first and last, or the fields which should appear explicitly.
MaskImpl(Class, Group, String) - Constructor for class com.ivata.mask.MaskImpl
Create a mask with the specified parent.

N

NumberFieldValueConvertor - class com.ivata.mask.field.number.NumberFieldValueConvertor.
This convertor is used when the field value is a string representing a number or floating point (such as an amount or rate).
NumberFieldValueConvertor(String) - Constructor for class com.ivata.mask.field.number.NumberFieldValueConvertor
Construct a new value convertor from the format pattern supplied.

O

openSession() - Method in interface com.ivata.mask.persistence.PersistenceManager
Before performing any other persistence operation, you need to open a valid persistence session.
openSession(Object) - Method in interface com.ivata.mask.persistence.PersistenceManager
Before performing any other persistence operation, you need to open a valid persistence session.

P

PARAMETER_NAME_PREFIX - Static variable in class com.ivata.mask.field.FieldValueConvertorConstants
All value object parameter names are prefixed by this string.
PersistenceException - exception com.ivata.mask.persistence.PersistenceException.
This message is thrown when one of the persistence classes cannot locate, remove, or create a data object.
PersistenceException(String, Throwable) - Constructor for class com.ivata.mask.persistence.PersistenceException
Create a new persistence exception with the given message and cause.
PersistenceException(String) - Constructor for class com.ivata.mask.persistence.PersistenceException
Create a new persistence exception with the given message.
PersistenceException(Throwable) - Constructor for class com.ivata.mask.persistence.PersistenceException
Create a new persistence exception with the cause.
PersistenceManager - interface com.ivata.mask.persistence.PersistenceManager.
Defines how data objects are stored and retrieved throughout the system.
PersistenceRights - interface com.ivata.mask.persistence.right.PersistenceRights.
An implementation of this interface must be provided to the persistence manager.
PersistenceSession - interface com.ivata.mask.persistence.PersistenceSession.
A persistence session must be opened (by calling PersistenceManager.openSession before performing any other persistence operation.

R

readConfiguration(InputStream) - Method in class com.ivata.mask.DefaultMaskFactory
Get the configuration represented by the dom4j document provided.
readConfiguration(InputStream) - Method in interface com.ivata.mask.MaskFactory
Get the configuration represented by the document provided.
remove(PersistenceSession, Class, Serializable) - Method in interface com.ivata.mask.persistence.PersistenceManager
Remove a value object from the persistence store.

S

setChoiceProperties(Properties) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getChoiceProperties().
setChoicePropertyKeys(List) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getChoicePropertyKeys().
setDOClass(Class) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getDOClass().
setDefaultValue(String) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getDefaultValue().
setDisplayOnly(boolean) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.isDisplayOnly().
setDisplayOnly(boolean) - Method in class com.ivata.mask.group.GroupImpl
If true, only the values in this mask will be displayed.
setFieldValueConvertor(Class, FieldValueConvertor) - Method in class com.ivata.mask.field.DefaultFieldValueConvertorFactory
Set the field value convertor to use for a particular class.
setFieldValueConvertor(Class, FieldValueConvertor) - Method in interface com.ivata.mask.field.FieldValueConvertorFactory
Set the field value convertor to use for a particular class.
setHidden(boolean) - Method in class com.ivata.mask.field.FieldImpl
Refer to #getHidden.
setLabelKey(String) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getLabelKey().
setMandatory(boolean) - Method in class com.ivata.mask.field.FieldImpl
Refer to #getMandatory.
setName(String) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getName().
setOneToOne(boolean) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.isOneToOne().
setParent(Field) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getParent().
setParentFirstFieldNamesReplaced(boolean) - Method in class com.ivata.mask.group.GroupImpl
Set whether or not the first field name list of parent mask groups should be replaced.
setParentLastFieldNamesReplaced(boolean) - Method in class com.ivata.mask.group.GroupImpl
Set whether or not the last field name list of parent mask groups should be replaced.
setStringValue(Object, Field, String) - Method in class com.ivata.mask.field.FieldValueConvertor
Set the value of the field provided, in the value object supplied.
setType(String) - Method in class com.ivata.mask.field.FieldImpl
Refer to FieldImpl.getType().
setValue(Object) - Method in class com.ivata.mask.filter.FilterImpl
Refer to Filter.getValue().

T

TYPE_AMOUNT - Static variable in interface com.ivata.mask.field.Field
Indicates the fields contents should be formatted as an amount.
TYPE_DATE - Static variable in interface com.ivata.mask.field.Field
Indicates the fields contents should be formatted as a date.
TYPE_NUMBER - Static variable in interface com.ivata.mask.field.Field
Indicates the fields contents should be formatted as a number.
TYPE_RADIO - Static variable in interface com.ivata.mask.field.Field
Indicates the field is an option to be displayed as a radio button.
TYPE_SELECT - Static variable in interface com.ivata.mask.field.Field
Indicates the field is displayed as a choice combo box.
TYPE_STRING - Static variable in interface com.ivata.mask.field.Field
Indicates the field is displayed as a short text.
TYPE_TEXTAREA - Static variable in interface com.ivata.mask.field.Field
Indicates the field is displayed as a long text.
toString(Object) - Method in class com.ivata.mask.field.ClassFieldValueConvertor
Convert an object representing a class to a string.
toString() - Method in class com.ivata.mask.field.FieldImpl
Overridden to return the field name.
toString(Object) - Method in class com.ivata.mask.field.FieldValueConvertor
Convert a field object value into a string.
toString(Object) - Method in class com.ivata.mask.field.date.DateFieldValueConvertor
Convert an object representing a date to a string.
toString(Object) - Method in class com.ivata.mask.field.number.NumberFieldValueConvertor
Convert an object representing a number to a string.
toString(Object) - Method in class com.ivata.mask.field.valueobject.ValueObjectFieldValueConvertor
Overridden to get the id string of a value object for hidden fields.
toString() - Method in class com.ivata.mask.validation.ValidationError
Overridden from Object for convenience when debugging.
toString() - Method in class com.ivata.mask.validation.ValidationErrors
Overridden to show you the errors this object contains.

V

ValidationError - class com.ivata.mask.validation.ValidationError.
This class represents an error which occurred when data is validated for submission.
ValidationError(String, List) - Constructor for class com.ivata.mask.validation.ValidationError
Create a new instance with the given error key and parameters.
ValidationError(String, Field, String) - Constructor for class com.ivata.mask.validation.ValidationError
Create a new instance with the given field, and error key.
ValidationError(String, Field, String, List) - Constructor for class com.ivata.mask.validation.ValidationError
Create a new instance with the given field and parameters.
ValidationError(String, String, Field, String) - Constructor for class com.ivata.mask.validation.ValidationError
Create a new instance with the given field, error key and bundle.
ValidationError(String, String, Field, String, List) - Constructor for class com.ivata.mask.validation.ValidationError
Create a new instance with the given bundle, field, label and parameters.
ValidationErrors - class com.ivata.mask.validation.ValidationErrors.
Represents a list of ValidationError instances which have occurred in data which is being validated for submission.
ValidationErrors() - Constructor for class com.ivata.mask.validation.ValidationErrors
 
ValidationException - exception com.ivata.mask.validation.ValidationException.
An instance of this class is thrown by ivata groupware server-side methods when an error occurs that prevents the method from continuing.
ValidationException(ValidationError) - Constructor for class com.ivata.mask.validation.ValidationException
Creates a validation exception.
ValidationException(ValidationErrors) - Constructor for class com.ivata.mask.validation.ValidationException
Creates a validation exception.
ValueObject - interface com.ivata.mask.valueobject.ValueObject.
For the purposes of ivata masks, a value object or data object (we use the two synonymously) defines any object which may be listed, edited, displayed or persisted by the system.
ValueObjectFieldValueConvertor - class com.ivata.mask.field.valueobject.ValueObjectFieldValueConvertor.
Write out the id field of a value object for hidden fields.
ValueObjectFieldValueConvertor() - Constructor for class com.ivata.mask.field.valueobject.ValueObjectFieldValueConvertor
 

A C D E F G I M N O P R S T V

Copyright © 2001-2005 ivata limited. All Rights Reserved.