Validator Delegates
Identifier:
org.eclipse.wst.validation.validatorDelegates
Since:
This extension point is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
Description:
This extension point allows validator providers to contribute alternate implementations for a delegating validator.
Configuration Markup:
<!ELEMENT extension (delegate)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT delegate EMPTY>
<!ATTLIST delegate
class CDATA #REQUIRED
target CDATA #REQUIRED
name CDATA #REQUIRED>
Defines a validator delegate. Delegating validators can have one or more delegates registered, only one of which can be active (selected) at once.
- class - Specifies the class name of the delegate validator. The class must implement IValidatorJob.
- target - Specifies the id of the validator extension for which this delegate is being registered.
- name -
Examples:
Copyright (c) 2006 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v2.0 which accompanies
this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/