KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ws > jaxme > generator > sg > impl > ccsg > ParticleVisitorImpl


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 JavaDoc;
7
8
9 /** Default implementation of a
10  * {@link org.apache.ws.jaxme.generator.sg.impl.ccsg.ParticleVisitor},
11  * with methods doing nothing.
12  */

13 public class ParticleVisitorImpl implements ParticleVisitor {
14     public void emptyType(ComplexTypeSG type) throws SAXException JavaDoc {
15     }
16
17     public void simpleContent(ComplexTypeSG type) throws SAXException JavaDoc {
18     }
19
20     public void startSequence(GroupSG group) throws SAXException JavaDoc {
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 JavaDoc {
39     }
40
41     public void endComplexContent(ComplexTypeSG type) throws SAXException JavaDoc {
42     }
43
44     public void simpleElementParticle(GroupSG pGroup, ParticleSG pParticle) throws SAXException JavaDoc {
45     }
46
47     public void complexElementParticle(GroupSG pGroup, ParticleSG particle) throws SAXException JavaDoc {
48     }
49
50     public void wildcardParticle(ParticleSG particle) {
51     }
52 }
53
Popular Tags