FileDocCategorySizeDatePackage
UniqueOrKey.javaAPI DocJava SE 6 API1545Tue Jun 10 00:22:46 BST 2008com.sun.org.apache.xerces.internal.impl.xs.identity

UniqueOrKey

public class UniqueOrKey extends IdentityConstraint
Schema unique or key identity constraint. These two kinds of identity constraint have been combined to save the creation of a separate Vector object for any element that has both. A short int is used to distinguish which this object is.
xerces.internal
author
Andy Clark, IBM
version
$Id: UniqueOrKey.java,v 1.2.6.1 2005/09/08 08:53:05 sunithareddy Exp $

Fields Summary
Constructors Summary
public UniqueOrKey(String namespace, String identityConstraintName, String elemName, short type)
Constructs a unique or a key identity constraint.

        super(namespace, identityConstraintName, elemName);
        this.type = type;
    
Methods Summary