1 26 27 package org.objectweb.jonas_lib.deployment.rules; 28 29 import org.apache.commons.digester.RuleSetBase; 30 31 32 36 public abstract class JRuleSetBase extends RuleSetBase { 37 38 41 protected String prefix = null; 42 43 44 48 public JRuleSetBase() { 49 this(""); 50 } 51 52 53 57 public JRuleSetBase(String prefix) { 58 super(); 59 this.namespaceURI = null; 60 this.prefix = prefix; 61 } 62 63 } 64 | Popular Tags |