summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosDevice.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2010-11-19 22:44:48 -0800
committerKeith Packard <keithp@keithp.com>2010-11-19 22:48:11 -0800
commit594e80572821f1848db062d0cff18ca8bf0d90ce (patch)
tree10a626e1752894b540af115c9e4d12ff089885b8 /ao-tools/altosui/AltosDevice.java
parentfa07afc73bc5eccff8464a2def05ad600da33c97 (diff)
altosui: switch channel selector to combo box. Shorten displayed device names
A combo box displays the current value, which is quite nice to have. Add a 'toShortString' for AltosDevice so that the window frames and error messages don't have extra spaces generated by the altos_device toString method. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/altosui/AltosDevice.java')
-rw-r--r--ao-tools/altosui/AltosDevice.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/ao-tools/altosui/AltosDevice.java b/ao-tools/altosui/AltosDevice.java
index f646305b..f0fda57b 100644
--- a/ao-tools/altosui/AltosDevice.java
+++ b/ao-tools/altosui/AltosDevice.java
@@ -101,6 +101,15 @@ public class AltosDevice extends altos_device {
getName(), getSerial(), getPath());
}
+ public String toShortString() {
+ String name = getName();
+ if (name == null)
+ name = "Altus Metrum";
+ return String.format("%s %d %s",
+ name, getSerial(), getPath());
+
+ }
+
public boolean isAltusMetrum() {
if (getVendor() != vendor_altusmetrum)
return false;