Interface ValueStore
- All Known Implementing Classes:
XMLSchemaValidator.KeyRefValueStore
,XMLSchemaValidator.KeyValueStore
,XMLSchemaValidator.UniqueValueStore
,XMLSchemaValidator.ValueStoreBase
public interface ValueStore
Interface for storing values associated to an identity constraint.
Each value stored corresponds to a field declared for the identity
constraint. One instance of an object implementing this interface
is created for each identity constraint per element declaration in
the instance document to store the information for this identity
constraint.
Note: The component performing identity constraint collection and validation is responsible for providing an implementation of this interface. The component is also responsible for performing the necessary checks required by each type of identity constraint.
INTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Version:
- $Id: ValueStore.java 520039 2007-03-19 18:34:38Z mrglavas $
- Author:
- Andy Clark, IBM
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addValue
(Field field, boolean mayMatch, Object actualValue, short valueType, org.apache.xerces.xs.ShortList itemValueType) Adds the specified value to the value store.void
reportError
(String key, Object[] args) Since the valueStore will have access to an error reporter, this allows it to be called appropriately.
-
Method Details
-
addValue
void addValue(Field field, boolean mayMatch, Object actualValue, short valueType, org.apache.xerces.xs.ShortList itemValueType) Adds the specified value to the value store.- Parameters:
field
- The field associated to the value. This reference is used to ensure that each field only adds a value once within a selection scope.mayMatch
- a flag indiciating whether the field may be matched.actualValue
- The value to add.valueType
- Type of the value to add.itemValueType
- If the value is a list, a list of types for each of the values in the list.
-
reportError
Since the valueStore will have access to an error reporter, this allows it to be called appropriately.- Parameters:
key
- the key of the localized error messageargs
- the list of arguments for substitution.
-