{
if (this.handlerClass != null)
{
//impl.putConverter(this.tagName, this.converterId, handlerClass);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletConverterTagImpl(this.converterId, this.handlerClass)));
this.handlerClass = null;
}
else
{
//impl.putConverter(this.tagName, this.converterId);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletConverterTagImpl(this.converterId)));
}
this.converterId = null;
}
else if ("validator-id".equals(qName))
{