1 31 package org.objectweb.proactive.core.xml.handler; 32 33 import org.objectweb.proactive.core.xml.io.Attributes; 34 35 43 public class PassiveCompositeUnmarshaller extends AbstractUnmarshallerDecorator { 44 45 49 public PassiveCompositeUnmarshaller(boolean lenient) { 50 super(lenient); 51 } 52 53 public PassiveCompositeUnmarshaller() { 54 super(); 55 } 56 57 58 62 66 public Object getResultObject() throws org.xml.sax.SAXException { 67 return null; 68 } 69 70 71 public void startContextElement(String name, Attributes attributes) throws org.xml.sax.SAXException { 72 } 73 74 75 76 80 protected void notifyEndActiveHandler(String name, UnmarshallerHandler activeHandler) throws org.xml.sax.SAXException { 81 82 } 83 84 88 89 93 } | Popular Tags |