1 16 17 package org.apache.xerces.impl.xs.identity; 18 19 import org.apache.xerces.xs.XSIDCDefinition; 20 21 29 public class KeyRef 30 extends IdentityConstraint { 31 32 36 37 protected UniqueOrKey fKey; 38 39 43 44 public KeyRef(String namespace, String identityConstraintName, 45 String elemName, UniqueOrKey key) { 46 super(namespace, identityConstraintName, elemName); 47 fKey = key; 48 type = IC_KEYREF; 49 } 51 55 56 public UniqueOrKey getKey() { 57 return fKey; 58 } 60 65 public XSIDCDefinition getRefKey() { 66 return fKey; 67 } 68 69 } | Popular Tags |