{
if (this.handlerClass != null)
{
//impl.putComponent(this.tagName, this.componentType, this.rendererType, this.handlerClass);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletComponentTagImpl(this.componentType, this.rendererType,
this.handlerClass, null)));
this.handlerClass = null;
}
else if (this.resourceId != null)
{
//impl.putComponentFromResourceId(this.tagName, this.resourceId);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletComponentTagImpl(null, null, null, this.resourceId)));
this.resourceId = null;
this.handlerClass = null;
}
else
{
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletComponentTagImpl(this.componentType, this.rendererType, null, null)));
this.handlerClass = null;
//impl.putComponent(this.tagName, this.componentType, this.rendererType);
}
}
else if ("converter-id".equals(qName))