| org.apache.xerces.validators.schema.identity.FieldActivator
All known Subclasses: org.apache.xerces.validators.common.XMLValidator,
FieldActivator | public interface FieldActivator (Code) | | Interface for a field activator. The field activator is responsible
for activating fields within a specific scope; the caller merely
requests the fields to be activated.
author: Andy Clark, IBM version: $Id: FieldActivator.java,v 1.3 2001/06/14 22:23:43 neilg Exp $ |
activateField | public XPathMatcher activateField(Field field) throws Exception(Code) | | Request to activate the specified field. This method returns the
matcher for the field.
It's also important for the implementor to ensure that the Field realizes that
it is permitted to match a value--that is, to call the field's setMayMatch(boolean) method.
Parameters: field - The field to activate. |
endValueScopeFor | public void endValueScopeFor(IdentityConstraint identityConstraint) throws Exception(Code) | | Ends the value scope for the specified identity constraint.
Parameters: identityConstraint - The identity constraint. |
startValueScopeFor | public void startValueScopeFor(IdentityConstraint identityConstraint) throws Exception(Code) | | Start the value scope for the specified identity constraint. This
method is called when the selector matches in order to initialize
the value store.
Parameters: identityConstraint - The identity constraint. |
|
|