Back to project page markj.
The source code is released under:
GNU Lesser General Public License
If you think the Android project markj listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.markjmind.mobile.api.android.xml; /*w w w.j a va 2 s . c om*/ import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; /** * start : 2013.11.16<br> * <br> * * @author ??? * @version 2013.11.16 */ public interface JwDomHandler { public void startElement(Node node, String name, String text, NamedNodeMap attr, Element root); public void endElement(Node node, String name, String text, NamedNodeMap attr, Element root); }