FileDocCategorySizeDatePackage
UniqueOrKey.javaAPI DocJava SE 5 API3585Fri Aug 26 14:55:50 BST 2005com.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.
author
Andy Clark, IBM
version
$Id: UniqueOrKey.java,v 1.3 2002/05/16 18:25:55 sandygao 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