Changeset 29 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures


Ignore:
Timestamp:
08/02/2017 12:46:43 PM (9 years ago)
Author:
bmcguffin
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/scriptbuilder/structures/I_XML_Writable.java

    r20 r29  
    88public interface I_XML_Writable 
    99{ 
    10     abstract String toXML(); 
     10    String toXML(); 
    1111     
    12     public String openTag(String s); 
     12    String openTag(String s); 
    1313     
    14     public String closeTag(String s); 
     14    String closeTag(String s); 
    1515     
    16     public String emptyTag(String s); 
     16    String emptyTag(String s); 
    1717     
    1818} 
Note: See TracChangeset for help on using the changeset viewer.