1 22 23 package org.xquark.schema.loader; 24 25 import org.xquark.schema.*; 26 27 public final class SchemaComponentRef extends SchemaComponent { 28 private static final String RCSRevision = "$Revision: 1.1 $"; 29 private static final String RCSName = "$Name: $"; 30 31 private int type; 32 33 public SchemaComponentRef(Schema schema, String name, int type) { 34 super(schema, name); 35 this.type = type; 36 } 37 38 public void accept(SchemaVisitor visitor) throws SchemaException { 39 visitor.visit(this); 40 } 41 42 public int getType() { 43 return type; 44 } 45 } 46 47 | Popular Tags |