MCPcopy Index your code
hub / github.com/apache/tomcat / getRules

Method getRules

java/org/apache/tomcat/util/digester/Digester.java:824–830  ·  view source on GitHub ↗

Return the Rules implementation object containing our rules collection and associated matching policy. If none has been established, a default implementation will be created and returned. @return the rules

()

Source from the content-addressed store, hash-verified

822 * @return the rules
823 */
824 public Rules getRules() {
825 if (this.rules == null) {
826 this.rules = new RulesBase();
827 this.rules.setDigester(this);
828 }
829 return this.rules;
830 }
831
832
833 /**

Callers 3

endDocumentMethod · 0.95
startElementMethod · 0.95
addRuleMethod · 0.95

Calls 1

setDigesterMethod · 0.65

Tested by

no test coverage detected