org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/ui/deployment/bluetooth/BluetoothTarget.java
changeset 457 f1087591ff71
parent 456 12b549765c34
child 459 c278f0c8917f
equal deleted inserted replaced
456:12b549765c34 457:f1087591ff71
   312     }
   312     }
   313 
   313 
   314     public boolean isDiscovered() {
   314     public boolean isDiscovered() {
   315         return device != null;
   315         return device != null;
   316     }
   316     }
       
   317 
       
   318     public String getDescription() {
       
   319         return device == null ? "This device was remembered from past sessions and may not be available" : String
       
   320                 .format("Remote device with address %s", device.getBluetoothAddress());
       
   321     }
   317 }
   322 }