{
if (this.handlerClass != null)
{
//impl.putValidator(this.tagName, this.validatorId, handlerClass);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletValidatorTagImpl(this.validatorId, this.handlerClass)));
this.handlerClass = null;
}
else
{
//impl.putValidator(this.tagName, this.validatorId);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletValidatorTagImpl(this.validatorId)));
}
this.validatorId = null;
}
else if ("behavior-id".equals(qName))
{