1 31 package org.objectweb.proactive.core.xml.handler; 32 33 import org.apache.log4j.Logger; 34 import org.objectweb.proactive.core.xml.io.XMLHandler; 35 import org.objectweb.proactive.core.xml.io.Attributes; 36 37 45 public interface UnmarshallerHandler extends XMLHandler { 46 47 static Logger logger = Logger.getLogger(UnmarshallerHandler.class.getName()); 48 49 50 56 public Object getResultObject() throws org.xml.sax.SAXException ; 57 58 66 public void startContextElement(String name, Attributes attributes) throws org.xml.sax.SAXException ; 67 68 } | Popular Tags |