Java 类org.apache.catalina.deploy.ResourceBase 实例源码

项目:tomcat7    文件:WebRuleSet.java   
/**
 * Process the body text of this element.
 *
 * @param namespace the namespace URI of the matching element, or an
 *   empty string if the parser is not namespace aware or the element has
 *   no namespace
 * @param name the local name if the parser is namespace aware, or just
 *   the element name otherwise
 * @param text The body text of this element
 */
@Override
public void body(String namespace, String name, String text)
        throws Exception {
    ResourceBase resourceBase = (ResourceBase) digester.peek();
    resourceBase.setProperty("mappedName", text.trim());
}
项目:class-guard    文件:WebRuleSet.java   
/**
 * Process the body text of this element.
 *
 * @param namespace the namespace URI of the matching element, or an
 *   empty string if the parser is not namespace aware or the element has
 *   no namespace
 * @param name the local name if the parser is namespace aware, or just
 *   the element name otherwise
 * @param text The body text of this element
 */
@Override
public void body(String namespace, String name, String text)
        throws Exception {
    ResourceBase resourceBase = (ResourceBase) digester.peek();
    resourceBase.setProperty("mappedName", text.trim());
}
项目:apache-tomcat-7.0.57    文件:WebRuleSet.java   
/**
 * Process the body text of this element.
 *
 * @param namespace the namespace URI of the matching element, or an
 *   empty string if the parser is not namespace aware or the element has
 *   no namespace
 * @param name the local name if the parser is namespace aware, or just
 *   the element name otherwise
 * @param text The body text of this element
 */
@Override
public void body(String namespace, String name, String text)
        throws Exception {
    ResourceBase resourceBase = (ResourceBase) digester.peek();
    resourceBase.setProperty("mappedName", text.trim());
}
项目:apache-tomcat-7.0.57    文件:WebRuleSet.java   
/**
 * Process the body text of this element.
 *
 * @param namespace the namespace URI of the matching element, or an
 *   empty string if the parser is not namespace aware or the element has
 *   no namespace
 * @param name the local name if the parser is namespace aware, or just
 *   the element name otherwise
 * @param text The body text of this element
 */
@Override
public void body(String namespace, String name, String text)
        throws Exception {
    ResourceBase resourceBase = (ResourceBase) digester.peek();
    resourceBase.setProperty("mappedName", text.trim());
}
项目:lazycat    文件:WebRuleSet.java   
/**
 * Process the body text of this element.
 *
 * @param namespace
 *            the namespace URI of the matching element, or an empty string
 *            if the parser is not namespace aware or the element has no
 *            namespace
 * @param name
 *            the local name if the parser is namespace aware, or just the
 *            element name otherwise
 * @param text
 *            The body text of this element
 */
@Override
public void body(String namespace, String name, String text) throws Exception {
    ResourceBase resourceBase = (ResourceBase) digester.peek();
    resourceBase.setProperty("mappedName", text.trim());
}