1 22 package org.jboss.xb.binding; 23 24 import org.xml.sax.Attributes ; 25 26 41 public interface GenericObjectModelFactory 42 extends ObjectModelFactory 43 { 44 56 Object newChild(Object parent, UnmarshallingContext ctx, String namespaceURI, String localName, Attributes attrs); 57 58 71 void addChild(Object parent, Object child, UnmarshallingContext ctx, String namespaceURI, String localName); 72 73 85 void setValue(Object o, UnmarshallingContext ctx, String namespaceURI, String localName, String value); 86 } 87 | Popular Tags |