1 18 19 20 package org.apache.tomcat.util.digester; 21 22 23 28 29 public abstract class RuleSetBase implements RuleSet { 30 31 32 34 35 39 protected String namespaceURI = null; 40 41 42 44 45 49 public String getNamespaceURI() { 50 51 return (this.namespaceURI); 52 53 } 54 55 56 58 59 68 public abstract void addRuleInstances(Digester digester); 69 70 71 } 72 | Popular Tags |