* Attempts to find a dynamically created tag that has been created since this
* script was compiled
*/
protected Tag findDynamicTag(JellyContext context, StaticTag tag) throws Exception {
// lets see if there's a tag library for this URI...
TagLibrary taglib = context.getTagLibrary( tag.getUri() );
if ( taglib instanceof DynamicTagLibrary ) {
DynamicTagLibrary dynaLib = (DynamicTagLibrary) taglib;
Tag newTag = dynaLib.createTag( tag.getLocalName() );
if ( newTag != null ) {
newTag.setParent( tag.getParent() );