// Tag interface
//-------------------------------------------------------------------------
public void doTag(XMLOutput output) throws Exception {
String uri = getUri();
tagLibrary = new DynamicTagLibrary( uri );
// inherit tags from an existing tag library
if ( isInherit() ) {
tagLibrary.setParent( context.getTagLibrary( uri ) );
}