public ValidationDescriptor(DomainMgr domainMgr, String elementName, String xPath, String customValidatorClass, String key, Vector attrType, String[] required_children, String[] exclusive_children)
this.domainMgr = domainMgr;
this.elementName = elementName;
this.xPath = xPath;
this.customValidatorClass = customValidatorClass;
this.key = key;
this.attrType = attrType;
this.requiredChildren = required_children;
this.exclusiveChildren = exclusive_children;
|