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

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

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

origin: commons-digester/commons-digester

/**
 * Set the <code>Rules</code> implementation object containing our
 * rules collection and associated matching policy.
 *
 * @param rules New Rules implementation
 */
public void setRules(Rules rules) {
  this.rules = rules;
  this.rules.setDigester(this);
}
origin: commons-digester/commons-digester

/**
 * Set the Digester instance with which this Rules instance is associated.
 *
 * @param digester The newly associated Digester instance
 */
public void setDigester(Digester digester) {
  this.digester = digester;
  decoratedRules.setDigester(digester);
}
origin: commons-digester/commons-digester

/**
 * This method passes through to the underlying Rules object.
 */
public void setDigester(Digester digester) {
  delegate.setDigester(digester);
}

origin: commons-digester/commons-digester

/** Sets digeseter using these Rules */
public void setDigester(Digester digester) {
  wrappedRules.setDigester(digester);
  for (Rule rule : defaultRules) {
    rule.setDigester(digester);
  }
}

origin: commons-digester/commons-digester

/**
 * Return the <code>Rules</code> implementation object containing our
 * rules collection and associated matching policy.  If none has been
 * established, a default implementation will be created and returned.
 */
public Rules getRules() {
  if (this.rules == null) {
    this.rules = new RulesBase();
    this.rules.setDigester(this);
  }
  return (this.rules);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

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

/**
 * Set the Digester instance with which this Rules instance is associated.
 *
 * @param digester The newly associated Digester instance
 */
public void setDigester(Digester digester) {
  this.digester = digester;
  decoratedRules.setDigester(digester);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * 设置digester.
 *
 * @param digester digester
 */
public void setDigester(Digester digester) {
  rules.setDigester(digester);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * Set the <code>Rules</code> implementation object containing our
 * rules collection and associated matching policy.
 *
 * @param rules New Rules implementation
 */
public void setRules(Rules rules) {
  this.rules = rules;
  this.rules.setDigester(this);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/** Sets digeseter using these Rules */
public void setDigester(Digester digester) {
  wrappedRules.setDigester(digester);
  for (Rule rule : defaultRules) {
    rule.setDigester(digester);
  }
}
 
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * Return the <code>Rules</code> implementation object containing our
 * rules collection and associated matching policy.  If none has been
 * established, a default implementation will be created and returned.
 */
public Rules getRules() {
  if (this.rules == null) {
    this.rules = new RulesBase();
    this.rules.setDigester(this);
  }
  return (this.rules);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * 覆盖父类的方法, 将参数<code>rules</code>包装成<code>ContextSensitiveRules</code>对象.
 *
 * @param rules <code>Rules</code>对象
 */
@Override
public void setRules(Rules rules) {
  if (!(rules instanceof ContextSensitiveRules)) {
    rules = new ContextSensitiveRules(rules);
  }
  this.rules = rules;
  this.rules.setDigester(this);
}
org.apache.commons.digesterRulessetDigester

Javadoc

Set the Digester instance with which this Rules instance is associated.

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
  • setNamespaceURI
    Set the namespace URI that will be applied to all subsequently added Rule objects.

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • getSupportFragmentManager (FragmentActivity)
  • getApplicationContext (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Option (scala)
  • Top plugins for Android Studio
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