1 17 package org.apache.ws.jaxme.xs.xml.impl; 18 19 import org.apache.ws.jaxme.xs.xml.*; 20 import org.apache.ws.jaxme.xs.xml.XsTExplicitGroup; 21 import org.xml.sax.SAXException ; 22 23 24 57 public class XsTExplicitGroupImpl extends XsTGroupImpl implements XsTExplicitGroup { 58 protected XsTExplicitGroupImpl(XsObject pParent) { 59 super(pParent); 60 } 61 62 public void setName(XsNCName pName) { 63 throw new IllegalStateException ("This group must not have its 'name' attribute set."); 64 } 65 66 public void setRef(XsQName pRef) { 67 throw new IllegalStateException ("This group must not have its 'ref' attribute set."); 68 } 69 70 public void setRef(String pRef) throws SAXException { 71 setRef(asXsQName(pRef)); 72 } 73 } 74 | Popular Tags |