1 17 package org.apache.ws.jaxme.xs.xml.impl; 18 19 import org.apache.ws.jaxme.xs.xml.*; 20 21 22 49 public class XsTLocalElementImpl extends XsTElementImpl implements XsTLocalElement { 50 protected XsTLocalElementImpl(XsObject pParent) { 51 super(pParent); 52 } 53 54 public void setSubstitutionGroup(XsQName pSubstitutionGroup) { 55 throw new IllegalArgumentException ("A local element must not have its 'substitutionGroup' attribute set."); 56 } 57 58 public void setSubstitutionGroup(String pSubstitutionGroup) { 59 throw new IllegalArgumentException ("A local element must not have its 'substitutionGroup' attribute set."); 60 } 61 62 public void setFinal(XsDerivationSet pFinal) { 63 throw new IllegalArgumentException ("A local element must not have its 'final' attribute set."); 64 } 65 66 public void setAbstract(boolean pAbstract) { 67 throw new IllegalArgumentException ("A local element must not have its 'abstract' attribute set."); 68 } 69 70 public boolean isGlobal() { return false; } 71 } 72 | Popular Tags |