Пример #1
0
 /**
  * Write the device independent image array stored in the specified loader to the specified output
  * stream.
  */
 public void unloadIntoStream(ImageLoader loader, LEDataOutputStream stream) {
   try {
     outputStream = stream;
     unloadIntoByteStream(loader);
     outputStream.flush();
   } catch (Exception e) {
     try {
       outputStream.flush();
     } catch (Exception f) {
     }
     SWT.error(SWT.ERROR_IO, e);
   }
 }