Index: trunk/src/atmsdriver/trafficeventseditor/TimeFrames.java
===================================================================
--- trunk/src/atmsdriver/batchbuilder/TimeFrames.java	(revision 237)
+++ trunk/src/atmsdriver/trafficeventseditor/TimeFrames.java	(revision 238)
@@ -4,5 +4,5 @@
  * and open the template in the editor.
  */
-package atmsdriver.batchbuilder;
+package atmsdriver.trafficeventseditor;
 
 import atmsdriver.model.Highway;
@@ -36,5 +36,5 @@
         frames = new ArrayList<>();
         highways = new Highways("./config/vds_data/highways_fullmap.txt", 
-                "localhost", 8080);
+                "192.168.251.46", 8080);
     }
     
@@ -170,6 +170,5 @@
     {
         highways.reset();
-        List<TrafficLaneEvent> events = currentTimeFrame.events;
-        for(TrafficLaneEvent event : events)
+        for(TrafficLaneEvent event : currentTimeFrame.events)
         {
             if(event.station.equals(currentStation))
@@ -202,3 +201,43 @@
         }
     }
+
+    void cumulativePreviewStation()
+    {
+        highways.reset();
+        for(TimeFrame tf : frames)
+        {
+            for(TrafficLaneEvent e : tf.events)
+            {
+                if(e.station.equals(currentStation))
+                {
+                    highways.applyTrafficLaneEvent(e);
+                }
+            }
+            
+            if(tf.equals(currentTimeFrame))
+                break;
+        }
+        writeToFEP();
+    }
+
+    void cumulativePreviewHighways()
+    {
+        highways.reset();
+        for(TimeFrame tf : frames)
+        {
+            for(TrafficLaneEvent e : tf.events)
+            {
+                highways.applyTrafficLaneEvent(e);
+            }
+   
+            if(tf.equals(currentTimeFrame))
+                break;
+        }
+        writeToFEP();
+    }
+    
+    /*String getBatchScript()
+    {
+        StringBuilder build = new StringBuilder();
+    */
 }
