Tabnine Logo
Rules.setNamespaceURI
Code IndexAdd Tabnine to your IDE (free)

How to use
setNamespaceURI
method
in
org.apache.commons.digester.Rules

Best Java code snippets using org.apache.commons.digester.Rules.setNamespaceURI (Showing top 9 results out of 315)

origin: commons-digester/commons-digester

/**
 * Set the namespace URI that will be applied to all subsequently
 * added <code>Rule</code> objects.
 *
 * @param namespaceURI Namespace URI that must match on all
 *  subsequently added rules, or <code>null</code> for matching
 *  regardless of the current namespace URI
 */
public void setNamespaceURI(String namespaceURI) {
  decoratedRules.setNamespaceURI(namespaceURI);
}
origin: commons-digester/commons-digester

/** Sets namespace to apply to Rule's added subsequently */
public void setNamespaceURI(String namespaceURI) {
  wrappedRules.setNamespaceURI(namespaceURI);
}

origin: commons-digester/commons-digester

  /**
   * This method passes through to the underlying Rules object.
   */
  public void setNamespaceURI(String namespaceURI) {
    delegate.setNamespaceURI(namespaceURI);
  }
}
origin: commons-digester/commons-digester

/**
 * Set the namespace URI that will be applied to all subsequently
 * added <code>Rule</code> objects.
 *
 * @param ruleNamespaceURI Namespace URI that must match on all
 *  subsequently added rules, or <code>null</code> for matching
 *  regardless of the current namespace URI
 */
public void setRuleNamespaceURI(String ruleNamespaceURI) {
  getRules().setNamespaceURI(ruleNamespaceURI);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * 设置名字空间.
 *
 * @param namespaceURI 名字空间
 */
public void setNamespaceURI(String namespaceURI) {
  rules.setNamespaceURI(namespaceURI);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * Set the namespace URI that will be applied to all subsequently
 * added <code>Rule</code> objects.
 *
 * @param namespaceURI Namespace URI that must match on all
 *  subsequently added rules, or <code>null</code> for matching
 *  regardless of the current namespace URI
 */
public void setNamespaceURI(String namespaceURI) {
  decoratedRules.setNamespaceURI(namespaceURI);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

  /**
   * This method passes through to the underlying Rules object.
   */
  public void setNamespaceURI(String namespaceURI) {
    delegate.setNamespaceURI(namespaceURI);
  }
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/** Sets namespace to apply to Rule's added subsequently */
public void setNamespaceURI(String namespaceURI) {
  wrappedRules.setNamespaceURI(namespaceURI);
}
 
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * Set the namespace URI that will be applied to all subsequently
 * added <code>Rule</code> objects.
 *
 * @param ruleNamespaceURI Namespace URI that must match on all
 *  subsequently added rules, or <code>null</code> for matching
 *  regardless of the current namespace URI
 */
public void setRuleNamespaceURI(String ruleNamespaceURI) {
  getRules().setNamespaceURI(ruleNamespaceURI);
}
org.apache.commons.digesterRulessetNamespaceURI

Javadoc

Set the namespace URI that will be applied to all subsequently added Rule objects.

Popular methods of Rules

  • add
    Register a new Rule instance matching the specified pattern.
  • clear
    Clear all existing Rule instance registrations.
  • getDigester
    Return the Digester instance with which this Rules instance is associated.
  • getNamespaceURI
    Return the namespace URI that will be applied to all subsequently added Rule objects.
  • match
    Return a List of all registered Rule instances that match the specified nesting pattern, or a zero-l
  • rules
    Return a List of all registered Rule instances, or a zero-length List if there are no registered Rul
  • setDigester
    Set the Digester instance with which this Rules instance is associated.

Popular in Java

  • Creating JSON documents from java classes using gson
  • putExtra (Intent)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setRequestProperty (URLConnection)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now