org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/ui/deployment/bluetooth/BluetoothTarget.java
changeset 457 f1087591ff71
parent 456 12b549765c34
child 459 c278f0c8917f
--- a/org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/ui/deployment/bluetooth/BluetoothTarget.java	Wed Jul 28 14:07:39 2010 -0700
+++ b/org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/ui/deployment/bluetooth/BluetoothTarget.java	Wed Jul 28 15:43:33 2010 -0700
@@ -314,4 +314,9 @@
     public boolean isDiscovered() {
         return device != null;
     }
+
+    public String getDescription() {
+        return device == null ? "This device was remembered from past sessions and may not be available" : String
+                .format("Remote device with address %s", device.getBluetoothAddress());
+    }
 }