Changeset 80 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder


Ignore:
Timestamp:
08/25/2017 02:41:55 PM (9 years ago)
Author:
bmcguffin
Message:

Renamed allSlices() method to arrangeAllSlices().

File:
1 edited

Legend:

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

    r76 r80  
    209209    public String toXML() 
    210210    { 
    211         ArrayList<TimeSlice> slices = allSlices(); 
     211        ArrayList<TimeSlice> slices = arrangeAllSlices(); 
    212212        String output = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n"; 
    213213        output += "<!DOCTYPE TMC_SCRIPT SYSTEM \"script.dtd\">\n"; 
     
    237237     * @return a list of all timeslices in the simulation script 
    238238     */ 
    239     public ArrayList<TimeSlice> allSlices() 
     239    public ArrayList<TimeSlice> arrangeAllSlices() 
    240240    { 
    241241        ArrayList<TimeSlice> list = new ArrayList<TimeSlice>(); 
Note: See TracChangeset for help on using the changeset viewer.