1 16 17 package org.apache.commons.jelly; 18 19 30 public interface Tag { 31 32 35 public Tag getParent(); 36 37 40 public void setParent(Tag parent); 41 42 45 public Script getBody(); 46 47 50 public void setBody(Script body); 51 52 55 public JellyContext getContext(); 56 57 60 public void setContext(JellyContext context) throws JellyTagException; 61 62 65 public void doTag(XMLOutput output) throws MissingAttributeException, JellyTagException; 66 67 70 public void invokeBody(XMLOutput output) throws JellyTagException; 71 72 } 73 | Popular Tags |