Back to project page Spidermine.
The source code is released under:
Copyright ? 2014 PEMapModder This software is open-source and everyone is welcome to share redistributions or modifications, as long as it is clearly specified that this project's original source is ...
If you think the Android project Spidermine 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 pemapmodder.easymod.xml; // www .j a va 2 s . c om public class Element { Element[] subElements={}; String name; Attribute[] attributes; public final boolean isNest; public Element(String name, Attribute[] attributes, Element[] subElements){ isNest=true; } public Element(String name, Attribute[] attributes, String content){ isNest=false; } }