1 20 package org.apache.cactus.integration.ant.deployment.application; 21 22 import java.util.Iterator ; 23 24 import org.w3c.dom.Document ; 25 import org.w3c.dom.Element ; 26 27 35 public interface ApplicationXml 36 { 37 43 Document getDocument(); 44 45 50 ApplicationXmlVersion getVersion(); 51 52 60 Element getWebModule(String theWebUri); 61 62 68 String getWebModuleContextRoot(String theWebUri); 69 70 76 Iterator getWebModuleUris(); 77 78 86 Iterator getElements(ApplicationXmlTag theTag); 87 } 88 | Popular Tags |