1 package net.sf.saxon.tree; 2 import net.sf.saxon.event.LocationProvider; 3 import net.sf.saxon.om.AttributeCollectionImpl; 4 import net.sf.saxon.om.NodeInfo; 5 6 7 14 15 public interface NodeFactory { 16 17 29 30 public ElementImpl makeElementNode( 31 NodeInfo parent, 32 int nameCode, 33 AttributeCollectionImpl attlist, 34 int[] namespaces, 35 int namespacesUsed, 36 LocationProvider locator, 37 int locationId, 38 int sequenceNumber); 39 40 } 41 42 | Popular Tags |