Пример #1
0
 // Tag interface
 // -------------------------------------------------------------------------
 public void doTag(XMLOutput output) throws JellyTagException {
   try {
     output.startElement(uri, localName, qname, attributes);
     invokeBody(output);
     output.endElement(uri, localName, qname);
   } catch (SAXException e) {
     throw new JellyTagException(e);
   } finally {
     attributes.clear();
     context = null;
   }
 }