"Please Provide a description of the file (" + f.getName() + ") " +
"you want to send to " + user,
"",null);
if(descriptionInput.open() != InputDialog.OK) return false;
try {
outgoingFileTransfer.sendFile(f,descriptionInput.getValue());
final String task = "Sending file " + f.getName() + " to " + user;
showProgressMonitor(parent, outgoingFileTransfer, task);
} catch (Exception e) {
throw new RuntimeException("Error while trying to send file.",e);