1 17 18 19 package org.apache.commons.digester; 20 21 import org.xml.sax.Attributes ; 22 import org.xml.sax.helpers.AttributesImpl ; 23 24 29 30 public class TestObjectCreationFactory extends AbstractObjectCreationFactory { 31 public boolean called = false; 32 public Attributes attributes; 33 34 public Object createObject(Attributes attributes) { 35 this.attributes = new AttributesImpl (attributes); 36 called = true; 37 return this; 38 } 39 } 40 41 42 43 | Popular Tags |