< prev index next >

src/com/sun/org/apache/xerces/internal/impl/xs/identity/Field.java

Print this page
rev 2127 : 8048021: Remove @version tag in jaxp repo
Reviewed-by: joehw


  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.impl.xs.identity;
  22 
  23 import com.sun.org.apache.xerces.internal.impl.xpath.XPathException;
  24 import com.sun.org.apache.xerces.internal.impl.xs.util.ShortListImpl;
  25 import com.sun.org.apache.xerces.internal.util.SymbolTable;
  26 import com.sun.org.apache.xerces.internal.xni.NamespaceContext;
  27 import com.sun.org.apache.xerces.internal.xs.ShortList;
  28 import com.sun.org.apache.xerces.internal.xs.XSComplexTypeDefinition;
  29 import com.sun.org.apache.xerces.internal.xs.XSConstants;
  30 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
  31 
  32 /**
  33  * Schema identity constraint field.
  34  *
  35  * @xerces.internal
  36  *
  37  * @author Andy Clark, IBM
  38  * @version $Id: Field.java,v 1.6 2010-11-01 04:39:57 joehw Exp $
  39  */
  40 public class Field {
  41 
  42     //
  43     // Data
  44     //
  45 
  46     /** Field XPath. */
  47     protected Field.XPath fXPath;
  48 
  49 
  50     /** Identity constraint. */
  51     protected IdentityConstraint fIdentityConstraint;
  52 
  53     //
  54     // Constructors
  55     //
  56 
  57     /** Constructs a field. */
  58     public Field(Field.XPath xpath,




  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.impl.xs.identity;
  22 
  23 import com.sun.org.apache.xerces.internal.impl.xpath.XPathException;
  24 import com.sun.org.apache.xerces.internal.impl.xs.util.ShortListImpl;
  25 import com.sun.org.apache.xerces.internal.util.SymbolTable;
  26 import com.sun.org.apache.xerces.internal.xni.NamespaceContext;
  27 import com.sun.org.apache.xerces.internal.xs.ShortList;
  28 import com.sun.org.apache.xerces.internal.xs.XSComplexTypeDefinition;
  29 import com.sun.org.apache.xerces.internal.xs.XSConstants;
  30 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
  31 
  32 /**
  33  * Schema identity constraint field.
  34  *
  35  * @xerces.internal
  36  *
  37  * @author Andy Clark, IBM

  38  */
  39 public class Field {
  40 
  41     //
  42     // Data
  43     //
  44 
  45     /** Field XPath. */
  46     protected Field.XPath fXPath;
  47 
  48 
  49     /** Identity constraint. */
  50     protected IdentityConstraint fIdentityConstraint;
  51 
  52     //
  53     // Constructors
  54     //
  55 
  56     /** Constructs a field. */
  57     public Field(Field.XPath xpath,


< prev index next >