|
Teuchos - Trilinos Tools Package
Version of the Day
|
Converts ArrayValidators to and from XML. More...
#include <Teuchos_StandardValidatorXMLConverters.hpp>
Inherits Teuchos::AbstractArrayValidatorXMLConverter< ValidatorType, EntryType >.
Converts ArrayValidators to and from XML.
ArrayValidators can be represented in XML one of two ways. The first just creates the prototype validator as a child of the ArrayValidator. In this case, the prototype validator does NOT use a validatorId.
<Validator type="ArrayValidator(PrototypeValidatorType,ParameterArrayType)" validatorId="Validator id" > ...Prototype Validator Goes Here... </Validator>
The second way to define an ArrayValidator in XML is to just use the "prototypeId" attribute to specify the prototype validator as some other validator you've already defined.
<Validator
type="ArrayValidator(PrototypeValidatorType,ParameterArrayType)"
validatorId="Validator id"
prototypeId="Prototype Validator Id"
/>
Definition at line 703 of file Teuchos_StandardValidatorXMLConverters.hpp.
1.7.6.1