1 22 23 package org.xquark.schema.loader; 24 25 import org.xquark.schema.*; 26 27 final public class ElementDeclarationRef extends ElementDeclaration { 28 private static final String RCSRevision = "$Revision: 1.1 $"; 29 private static final String RCSName = "$Name: $"; 30 31 public ElementDeclarationRef(Schema schema, String name, SchemaScope scope) { 32 super(schema, name, scope); 33 } 34 35 public void accept(SchemaVisitor visitor) throws SchemaException { 36 visitor.visit(this); 37 } 38 39 } 40 | Popular Tags |