Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.apache.cactus.integration.ant.deployment.webapp.WebXmlTag

Uses of WebXmlTag in org.apache.cactus.integration.ant.deployment.webapp
 

Fields in org.apache.cactus.integration.ant.deployment.webapp declared as WebXmlTag
static WebXmlTag WebXmlTag.ICON
          Element name 'icon'.
static WebXmlTag WebXmlTag.DISPLAY_NAME
          Element name 'display-name'.
static WebXmlTag WebXmlTag.DESCRIPTION
          Element name 'description'.
static WebXmlTag WebXmlTag.DISTRIBUTABLE
          Element name 'distributable'.
static WebXmlTag WebXmlTag.CONTEXT_PARAM
          Element name 'context-param'.
static WebXmlTag WebXmlTag.PARAM_NAME
          Element name 'param-name'.
static WebXmlTag WebXmlTag.PARAM_VALUE
          Element name 'param-value'.
static WebXmlTag WebXmlTag.FILTER
          Element name 'filter'.
static WebXmlTag WebXmlTag.FILTER_NAME
          Element name 'filter-name'.
static WebXmlTag WebXmlTag.FILTER_CLASS
          Element name 'filter-class'.
static WebXmlTag WebXmlTag.FILTER_MAPPING
          Element name 'filter-mapping'.
static WebXmlTag WebXmlTag.INIT_PARAM
          Element name 'init-param'.
static WebXmlTag WebXmlTag.LISTENER
          Element name 'listener'.
static WebXmlTag WebXmlTag.SERVLET
          Element name 'servlet'.
static WebXmlTag WebXmlTag.SERVLET_NAME
          Element name 'servlet-name'.
static WebXmlTag WebXmlTag.JSP_FILE
          Element name 'jsp-file'.
static WebXmlTag WebXmlTag.SERVLET_CLASS
          Element name 'servlet-class'.
static WebXmlTag WebXmlTag.LOAD_ON_STARTUP
          Element name 'load-on-startup'.
static WebXmlTag WebXmlTag.RUN_AS
          Element name 'run-as'.
static WebXmlTag WebXmlTag.SERVLET_MAPPING
          Element name 'servlet-mapping'.
static WebXmlTag WebXmlTag.URL_PATTERN
          Element name 'url-pattern'.
static WebXmlTag WebXmlTag.SESSION_CONFIG
          Element name 'session-config'.
static WebXmlTag WebXmlTag.MIME_MAPPING
          Element name 'mime-mapping'.
static WebXmlTag WebXmlTag.WELCOME_FILE_LIST
          Element name 'welcome-file-list'.
static WebXmlTag WebXmlTag.ERROR_PAGE
          Element name 'error-page'.
static WebXmlTag WebXmlTag.TAGLIB
          Element name 'taglib'.
static WebXmlTag WebXmlTag.RESOURCE_ENV_REF
          Element name 'resource-env-ref'.
static WebXmlTag WebXmlTag.RESOURCE_REF
          Element name 'resource-ref'.
static WebXmlTag WebXmlTag.SECURITY_CONSTRAINT
          Element name 'security-constraint'.
static WebXmlTag WebXmlTag.WEB_RESOURCE_COLLECTION
          Element name 'web-resource-collection'.
static WebXmlTag WebXmlTag.WEB_RESOURCE_NAME
          Element name 'web-resource-name'.
static WebXmlTag WebXmlTag.AUTH_CONSTRAINT
          Element name 'auth-constraint'.
static WebXmlTag WebXmlTag.LOGIN_CONFIG
          Element name 'login-config'.
static WebXmlTag WebXmlTag.AUTH_METHOD
          Element name 'auth-method'.
static WebXmlTag WebXmlTag.REALM_NAME
          Element name 'realm-name'.
static WebXmlTag WebXmlTag.SECURITY_ROLE
          Element name 'security-role'.
static WebXmlTag WebXmlTag.ROLE_NAME
          Element name 'role-name'.
static WebXmlTag WebXmlTag.ENV_ENTRY
          Element name 'env-entry'.
static WebXmlTag WebXmlTag.EJB_REF
          Element name 'ejb-ref'.
static WebXmlTag WebXmlTag.EJB_LOCAL_REF
          Element name 'ejb-local-ref'.
private static WebXmlTag[] WebXml.ELEMENT_ORDER
          Specifies the order in which the top-level elements must appear in the descriptor, according to the DTD.
 

Methods in org.apache.cactus.integration.ant.deployment.webapp with parameters of type WebXmlTag
private  int WebXmlMerger.insertElements(WebXml theWebXml, WebXmlTag theTag)
          Insert all elements of the specified tag from the given descriptor into the original descriptor, and returns the number of elements that were added.
private  boolean WebXmlMerger.replaceElement(WebXml theWebXml, WebXmlTag theTag)
          Replaces the element of the specified tag in the original descriptor with the equivalent element in the specified descriptor.
 java.util.Iterator WebXml.getElements(WebXmlTag theTag)
          Returns an iterator over the elements that match the specified tag.
 void WebXml.addElement(WebXmlTag theTag, org.w3c.dom.Element theElement)
          Adds an element of the specified tag to the descriptor.
 void WebXml.replaceElement(WebXmlTag theTag, org.w3c.dom.Element theElement)
          Replaces all elements of the specified tag with the provided element.
private  void WebXml.checkElement(org.w3c.dom.Element theElement, WebXmlTag theExpectedTag)
          Checks an element whether its name matches the specified name.
private  java.util.Iterator WebXml.getNestedElements(org.w3c.dom.Element theParent, WebXmlTag theTag)
          Returns an iterator over the child elements of the specified element that match the specified tag.
private  org.w3c.dom.Element WebXml.createNestedText(WebXmlTag theTag, java.lang.String theText)
          Creates an element that contains nested text.
private  org.w3c.dom.Node WebXml.getInsertionPointFor(WebXmlTag theTag)
          Returns the node before which the specified tag should be inserted, or null if the node should be inserted at the end of the descriptor.
private  java.lang.String WebXml.getNestedText(org.w3c.dom.Element theElement, WebXmlTag theTag)
          Returns the text nested inside a child element of the specified element.