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