Searched defs:idConstraints (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DElementDecl.java60 List<IdentityConstraintImpl> idConstraints) {
73 this.idConstraints = Collections.unmodifiableList((List<? extends XSIdentityConstraint>)idConstraints);
75 for (IdentityConstraintImpl idc : idConstraints)
113 private final List<XSIdentityConstraint> idConstraints; field in class:ElementDecl
115 return idConstraints;
52 ElementDecl( PatcherManager reader, SchemaDocumentImpl owner, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl fa, String _tns, String _name, boolean _anonymous, XmlString _defv, XmlString _fixedv, boolean _nillable, boolean _abstract, Boolean _form, Ref.Type _type, Ref.Element _substHead, int _substDisallowed, int _substExcluded, List<IdentityConstraintImpl> idConstraints) argument
H A DSchemaImpl.java192 private final Map<String,XSIdentityConstraint> idConstraints = new HashMap<String,XSIdentityConstraint>(); field in class:SchemaImpl
193 private final Map<String,XSIdentityConstraint> idConstraintsView = Collections.unmodifiableMap(idConstraints);
196 idConstraints.put(c.getName(),c);
204 return idConstraints.get(localName);

Completed in 3100 milliseconds