1 5 package xdoclet.modules.jboss.web; 6 7 import xdoclet.XDocletException; 8 import xdoclet.tagshandler.ClassTagsHandler; 9 10 17 public class JBossWebTagsHandler extends ClassTagsHandler 18 { 19 25 public void forAllResourceRefs(String template) throws XDocletException 26 { 27 ClassTagsHandler.forAllDistinctClassTags(getEngine(), template, "jboss.resource-ref", "res-ref-name"); 28 } 29 30 36 public void forAllEjbRefs(String template) throws XDocletException 37 { 38 ClassTagsHandler.forAllDistinctClassTags(getEngine(), template, "jboss.ejb-ref-jndi", "ref-name"); 39 } 40 41 47 public void forAllLocalRefs(String template) throws XDocletException 48 { 49 ClassTagsHandler.forAllDistinctClassTags(getEngine(), template, "jboss.ejb-local-ref", "ref-name"); 50 } 51 52 public void forAllResourceEnvRefs(String template) throws XDocletException 53 { 54 ClassTagsHandler.forAllDistinctClassTags(getEngine(), template, "jboss:resource-env-ref", "resource-env-ref-name"); 55 } 56 57 public void forAllDepends(String template) throws XDocletException 58 { 59 ClassTagsHandler.forAllDistinctClassTags(getEngine(), template, "jboss.depends", "name"); 60 } 61 } 62 | Popular Tags |