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));
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
- [Digester]How do you populate a map? Baltz, Kenneth
- Re: [Digester]How do you populate a map? Craig R. McClanahan
- Re: [Digester]How do you populate a map? pgarvie
- RE: [Digester]How do you populate a map? Baltz, Kenneth
