if (aName == null) {
super.startElement(uri, name, raw, attr);
} else {
if (this.prefix != null) aName = this.prefix + aName;
if (this.suffix != null) aName = aName + this.suffix;
ValidatorActionResult validation = XSPFormValidatorHelper.getParamResult(this.objectModel, aName);
String when = attr.getValue("when");
String when_ge = attr.getValue("when-ge");
if ((when != null && when.equals((String)validatorResults.get(validation))) ||
(when_ge != null && validation.ge((ValidatorActionResult)
validatorResultLabel.get(when_ge,ValidatorActionResult.MAXERROR)))
) {
AttributesImpl attributes=null;
if (attr instanceof AttributesImpl) {
attributes = (AttributesImpl) attr;