Changeset 47 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures/CadData.java


Ignore:
Timestamp:
08/08/2017 09:36:51 AM (9 years ago)
Author:
bmcguffin
Message:

Updated toXML behaviors for several classes to bring final adjustments in line with desired output.

File:
1 edited

Legend:

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

    r46 r47  
    141141 
    142142            output += XMLWriter.simpleTag(Header_Beat, ELEMENT.Beat); 
    143              
     143 
    144144            output += XMLWriter.simpleTag(Header_TruncLoc, ELEMENT.TruncLoc); 
    145              
     145 
    146146            output += XMLWriter.simpleTag(Header_FullLoc, ELEMENT.FullLoc); 
    147147 
     
    184184    } 
    185185 
     186    public boolean hasCadData() 
     187    { 
     188        return hasHeaderInfo() || hasLocation() || hasAdditionalInfo() 
     189                || !Master_Inc_Num.equals("") || !P.equals("") || !Agy.equals("") 
     190                || locInfo.size() > 0; 
     191    } 
    186192} 
Note: See TracChangeset for help on using the changeset viewer.