]> git.gag.com Git - fw/altos/blobdiff - teststand/AltosGraphUI.java
max pressure and max thrust now available as test stats
[fw/altos] / teststand / AltosGraphUI.java
index 1db2c6c021b36ed1e0f96846a33b8e384a626abb..6fd05b269550c572dfda7afbe7bdd64f0d42eef9 100644 (file)
@@ -34,10 +34,10 @@ import org.jfree.ui.RefineryUtilities;
 public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, AltosUnitsListener, AltosFilterListener
 {
        JTabbedPane             pane;
-       AltosGraph              graph;
+       TestStandGraph          graph;
        AltosUIEnable           enable;
-       AltosFlightStats        stats;
-       AltosFlightStatsTable   statsTable;
+       TestStats       stats;
+       TestStatsTable          statsTable;
        AltosGPS                gps;
        boolean                 has_gps;
 
@@ -56,7 +56,7 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt
        public void filter_changed(double speed_filter, double accel_filter) {
                flight_series.set_filter(speed_filter, accel_filter);
                graph.filter_changed();
-               stats = new AltosFlightStats(flight_series);
+               stats = new TestStats(flight_series);
                statsTable.filter_changed(stats);
        }
 
@@ -83,15 +83,15 @@ public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, Alt
 
                flight_series.finish();
 
-               stats = new AltosFlightStats(flight_series);
+               stats = new TestStats(flight_series);
 
-               graph = new AltosGraph(enable, stats, flight_series);
+               graph = new TestStandGraph(enable, stats, flight_series);
 
-               statsTable = new AltosFlightStatsTable(stats);
+               statsTable = new TestStatsTable(stats);
 
-               pane.add("Flight Graph", graph.panel);
+               pane.add("Test Graph", graph.panel);
                pane.add("Configure Graph", enable);
-               pane.add("Flight Statistics", statsTable);
+               pane.add("Test Statistics", statsTable);
 
                has_gps = false;