diff options
| author | Keith Packard <keithp@keithp.com> | 2010-11-19 22:44:48 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-11-19 22:48:11 -0800 | 
| commit | 594e80572821f1848db062d0cff18ca8bf0d90ce (patch) | |
| tree | 10a626e1752894b540af115c9e4d12ff089885b8 /ao-tools/altosui/AltosSerial.java | |
| parent | fa07afc73bc5eccff8464a2def05ad600da33c97 (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/AltosSerial.java')
| -rw-r--r-- | ao-tools/altosui/AltosSerial.java | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/ao-tools/altosui/AltosSerial.java b/ao-tools/altosui/AltosSerial.java index 0d32a5ae..ab74486b 100644 --- a/ao-tools/altosui/AltosSerial.java +++ b/ao-tools/altosui/AltosSerial.java @@ -38,7 +38,7 @@ public class AltosSerial implements Runnable {  	static List<String> devices_opened = Collections.synchronizedList(new LinkedList<String>()); -	altos_device device; +	AltosDevice device;  	SWIGTYPE_p_altos_file altos;  	LinkedList<LinkedBlockingQueue<AltosLine>> monitors;  	LinkedBlockingQueue<AltosLine> reply_queue; @@ -195,7 +195,7 @@ public class AltosSerial implements Runnable {  		}  		altos = libaltos.altos_open(device);  		if (altos == null) -			throw new FileNotFoundException(device.toString()); +			throw new FileNotFoundException(device.toShortString());  		input_thread = new Thread(this);  		input_thread.start();  		print("~\nE 0\n"); @@ -233,7 +233,7 @@ public class AltosSerial implements Runnable {  		}  	} -	public AltosSerial(altos_device in_device) throws FileNotFoundException, AltosSerialInUseException { +	public AltosSerial(AltosDevice in_device) throws FileNotFoundException, AltosSerialInUseException {  		device = in_device;  		line = "";  		monitor_mode = false;  | 
