Warning: Can't use blame annotator:
svn blame failed on trunk/src/scriptbuilder/structures/I_XML_Writable.java: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator-scriptbuilder/trunk/src/scriptbuilder/structures/I_XML_Writable.java @ 29

Revision 29, 241 bytes checked in by bmcguffin, 9 years ago (diff)

Added an interface to allow objects to return their held data in an XML-compliant manner.

RevLine 
1
2package scriptbuilder.structures;
3
4/**
5 *
6 * @author Bryan McGuffin
7 */
8public interface I_XML_Writable
9{
10    String toXML();
11   
12    String openTag(String s);
13   
14    String closeTag(String s);
15   
16    String emptyTag(String s);
17   
18}
Note: See TracBrowser for help on using the repository browser.