1 package org.apache.ws.jaxme.generator.sg.impl.ccsg; 2 3 import org.apache.ws.jaxme.generator.sg.ComplexTypeSG; 4 import org.apache.ws.jaxme.generator.sg.GroupSG; 5 import org.apache.ws.jaxme.generator.sg.ParticleSG; 6 import org.xml.sax.SAXException ; 7 8 9 13 public class ParticleVisitorImpl implements ParticleVisitor { 14 public void emptyType(ComplexTypeSG type) throws SAXException { 15 } 16 17 public void simpleContent(ComplexTypeSG type) throws SAXException { 18 } 19 20 public void startSequence(GroupSG group) throws SAXException { 21 } 22 23 public void endSequence(GroupSG group) { 24 } 25 26 public void startChoice(GroupSG group) { 27 } 28 29 public void endChoice(GroupSG group) { 30 } 31 32 public void startAll(GroupSG group) { 33 } 34 35 public void endAll(GroupSG group) { 36 } 37 38 public void startComplexContent(ComplexTypeSG type) throws SAXException { 39 } 40 41 public void endComplexContent(ComplexTypeSG type) throws SAXException { 42 } 43 44 public void simpleElementParticle(GroupSG pGroup, ParticleSG pParticle) throws SAXException { 45 } 46 47 public void complexElementParticle(GroupSG pGroup, ParticleSG particle) throws SAXException { 48 } 49 50 public void wildcardParticle(ParticleSG particle) { 51 } 52 } 53 | Popular Tags |