/ws-jaxme-0.5.2/src/xs/org/apache/ws/jaxme/xs/impl/XSIdentityConstraintImpl.java

# · Java · 107 lines · 63 code · 14 blank · 30 comment · 0 complexity · 5fe98cef6b8deb9de626351c93f0a646 MD5 · raw file

  1. /*
  2. * Copyright 2004 The Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.apache.ws.jaxme.xs.impl;
  17. import org.apache.ws.jaxme.xs.XSAnnotation;
  18. import org.apache.ws.jaxme.xs.XSIdentityConstraint;
  19. import org.apache.ws.jaxme.xs.XSElement;
  20. import org.apache.ws.jaxme.xs.XSElementOrAttrRef;
  21. import org.apache.ws.jaxme.xs.XPathMatcher;
  22. import org.apache.ws.jaxme.xs.xml.XsEKey;
  23. import org.apache.ws.jaxme.xs.xml.XsTKeybase;
  24. import org.apache.ws.jaxme.xs.xml.XsEUnique;
  25. import org.xml.sax.SAXException;
  26. /**
  27. * Default implementation of the XSIdentityConstraint.
  28. *
  29. * @author <a href="mailto:mrck1996@yahoo.co.uk">Chris Kirk</a>
  30. */
  31. public class XSIdentityConstraintImpl extends XSOpenAttrsImpl
  32. implements XSIdentityConstraint
  33. {
  34. private XSAnnotation[] annotations;
  35. private String name;
  36. private boolean isUnique;
  37. private XsTKeybase keyBase;
  38. private XSElementOrAttrRef[][] matchCriteria;
  39. protected XSIdentityConstraintImpl( XSElement pParent, XsEKey key )
  40. throws SAXException
  41. {
  42. super( pParent, key );
  43. initSelf( pParent, key, false );
  44. }
  45. protected XSIdentityConstraintImpl( XSElement pParent, XsEUnique unique )
  46. throws SAXException
  47. {
  48. super( pParent, unique );
  49. initSelf( pParent, unique, true );
  50. }
  51. public XSAnnotation[] getAnnotations() {
  52. return annotations;
  53. }
  54. /**
  55. * @see XSIdentityConstraintImpl#getName
  56. */
  57. public String getName() {
  58. return name;
  59. }
  60. /**
  61. * @see XSIdentityConstraintImpl#isUnique
  62. */
  63. public boolean isUnique() {
  64. return isUnique;
  65. }
  66. /**
  67. * @see XSIdentityConstraintImpl#getMatchCriteria
  68. */
  69. public XSElementOrAttrRef[][] getMatchCriteria() {
  70. return matchCriteria;
  71. }
  72. public void validate() throws SAXException {
  73. matchCriteria = XPathMatcher.match(
  74. keyBase,
  75. (XSElement) getParentObject()
  76. );
  77. validateAllIn( annotations );
  78. }
  79. private void initSelf(
  80. XSElement pParent,
  81. XsTKeybase keyBase,
  82. boolean isUnique
  83. ) throws SAXException {
  84. this.isUnique = isUnique;
  85. this.name = keyBase.getName().getValue();
  86. this.keyBase = keyBase;
  87. this.annotations = getXSSchema().getXSObjectFactory().newXSAnnotations(
  88. this,
  89. keyBase.getAnnotation()
  90. );
  91. }
  92. }