You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@commons.apache.org by pgarvie <pg...@mn.rr.com> on 2003/02/11 01:59:04 UTC

Maybe if I included all the classes?

public class StringObjectCreateRule extends ObjectCreateRule
{
     private String key;

     public StringObjectCreateRule(Class aClass, String key)
     {
         super(aClass);
         this.key = key;
     }

     public void begin(String s, String s1, Attributes attributes) throws 
Exception
     {
         super.getDigester().push(attributes.getValue(key));
     }

}