1 package com.icl.saxon.tree; 2 import com.icl.saxon.om.NodeInfo; 3 4 import org.xml.sax.Locator ; 5 6 7 14 15 public interface NodeFactory { 16 17 28 29 public ElementImpl makeElementNode( 30 NodeInfo parent, 31 int nameCode, 32 AttributeCollection attlist, 33 int[] namespaces, 34 int namespacesUsed, 35 Locator locator, 36 int sequenceNumber); 37 38 } 39 40 | Popular Tags |