Exemplo n.º 1
0
 /** read the meta-parameter value from an input stream */
 @Override
 public void readValue(InputStream is, String mimeType) throws IOException {
   try {
     PdfDocument pdf = new PdfDocument();
     pdf.readDocument(is);
     setValue(pdf);
   } catch (MetaParameterFormatException ex) {
     // never happens
     ex.printStackTrace();
   }
 }