diff options
author | Mike Beattie <mike@ethernal.org> | 2012-09-14 13:14:31 +1200 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2012-09-14 13:14:31 +1200 |
commit | 38fb6c070ffaf820d524fecce540d91fc6dda57b (patch) | |
tree | 59adc09a0df5f8e9d640df428235346aeefc170c | |
parent | ce1b19a012a2c1c623b03efb93b881e297736718 (diff) |
altosui: comment out un-used classes and associated imports
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | altosui/AltosConfigureUI.java | 3 | ||||
-rw-r--r-- | altosui/AltosGraphUI.java | 8 |
2 files changed, 8 insertions, 3 deletions
diff --git a/altosui/AltosConfigureUI.java b/altosui/AltosConfigureUI.java index a364273a..c576b052 100644 --- a/altosui/AltosConfigureUI.java +++ b/altosui/AltosConfigureUI.java @@ -22,7 +22,6 @@ import java.awt.event.*; import java.beans.*; import javax.swing.*; import javax.swing.event.*; -import javax.swing.plaf.basic.*; class DelegatingRenderer implements ListCellRenderer { @@ -289,6 +288,7 @@ public class AltosConfigureUI c.anchor = GridBagConstraints.WEST; pane.add(new JLabel("Look & feel"), c); + /* class LookAndFeelRenderer extends BasicComboBoxRenderer implements ListCellRenderer { public LookAndFeelRenderer() { @@ -307,6 +307,7 @@ public class AltosConfigureUI return this; } } + */ final UIManager.LookAndFeelInfo[] look_and_feels = UIManager.getInstalledLookAndFeels(); diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java index 7715eedd..f2addfd3 100644 --- a/altosui/AltosGraphUI.java +++ b/altosui/AltosGraphUI.java @@ -143,7 +143,8 @@ public class AltosGraphUI extends AltosFrame return graphs; } } - + + /* static private class AscentGraphs extends OverallGraphs { protected AltosGraphTime myAltosGraphTime(String suffix) { return (new AltosGraphTime("Ascent " + suffix) { @@ -158,7 +159,9 @@ public class AltosGraphUI extends AltosFrame .addElement(e_coast); } } - + */ + + /* static private class DescentGraphs extends OverallGraphs { protected AltosGraphTime myAltosGraphTime(String suffix) { return (new AltosGraphTime("Descent " + suffix) { @@ -173,6 +176,7 @@ public class AltosGraphUI extends AltosFrame // ((XYGraph)graph[8]).ymin = new Double(-50); } } + */ public AltosGraphUI(AltosRecordIterable records, String name) throws InterruptedException, IOException { super(String.format("Altos Graph %s", name)); |