{
if (this.handlerClass != null)
{
//impl.putBehavior(this.tagName, this.behaviorId, handlerClass);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletBehaviorTagImpl(this.behaviorId, this.handlerClass)));
this.handlerClass = null;
}
else
{
//impl.putBehavior(this.tagName, this.behaviorId);
getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
new FaceletBehaviorTagImpl(this.behaviorId)));
}
this.behaviorId = null;
}
else if ("source".equals(qName))
{