1 57 58 package com.sun.org.apache.xerces.internal.impl.xs.identity; 59 60 import com.sun.org.apache.xerces.internal.xs.XSIDCDefinition; 61 62 68 public class KeyRef 69 extends IdentityConstraint { 70 71 75 76 protected UniqueOrKey fKey; 77 78 82 83 public KeyRef(String namespace, String identityConstraintName, 84 String elemName, UniqueOrKey key) { 85 super(namespace, identityConstraintName, elemName); 86 fKey = key; 87 type = IC_KEYREF; 88 } 90 94 95 public UniqueOrKey getKey() { 96 return fKey; 97 } 99 104 public XSIDCDefinition getRefKey() { 105 return fKey; 106 } 107 108 } | Popular Tags |