1 16 package org.apache.ws.jaxme.generator.sg; 17 18 import org.xml.sax.Locator ; 19 import org.xml.sax.SAXException ; 20 import org.apache.ws.jaxme.generator.sg.ParticleSG; 21 22 23 25 public interface ComplexContentSG { 26 29 public Locator getLocator(); 30 31 33 public void init() throws SAXException ; 34 36 public boolean isEmpty(); 37 38 40 public boolean isMixed(); 41 42 44 public ParticleSG getRootParticle(); 45 46 49 public ParticleSG[] getElementParticles() throws SAXException ; 50 } 51 | Popular Tags |