/** @param totalBytes */
 public void setTotalBytes(long totalBytes) {
   if (listener != null) {
     listener.progressUpdated();
   }
   this.totalBytes = totalBytes;
 }
 /** @param readBytes */
 public void setReadBytes(long readBytes) {
   if (listener != null) {
     listener.progressUpdated();
   }
   this.readBytes = readBytes;
 }