1 22 23 package org.xquark.xpath; 24 25 import org.xquark.schema.Declaration; 26 27 31 public abstract class TypedXTreeNode extends XTreeNode 32 { 33 private static final String RCSRevision = "$Revision: 1.1 $"; 34 private static final String RCSName = "$Name: $"; 35 36 45 protected TypedXTreeNode( 46 XTree tree, 47 XTreeNode parent, 48 String namespace, 49 String localName, 50 byte type 51 ) 52 { 53 super(tree, parent, namespace, localName, type); 54 } 55 56 60 public abstract Declaration getDeclaration(); 61 } 62 | Popular Tags |