Package edu.harvard.hul.ois.jhove

Examples of edu.harvard.hul.ois.jhove.InfoMessage


    // Compression
    tmp = readUnsignedByte(inputStream, this);
    chcks.update((byte)tmp);

    if (tmp!=0) {
      repInfo.setMessage(new InfoMessage("Attenzione, tipo di compressine " +
                         tmp + " not conforme alla raccommandazione del W3C."));
    }


    // filtering
    tmp = readUnsignedByte(inputStream, this);
    chcks.update((byte)tmp);

    if (tmp!=0) {
      repInfo.setMessage(new InfoMessage("Attenzione, tipo di filtro " +
                         tmp + " no ancora standardizzato dal W3C."));
    }

    // interlace

    tmp = readUnsignedByte(inputStream, this);
    chcks.update((byte)tmp);

    if (tmp!=0 && tmp!=1) {
      repInfo.setMessage(new InfoMessage("Attenzione, tipo di interlacciamento " +
                         tmp + " no ancora standardizzato dal W3C."));
    }

    long crc32 = readUnsignedInt(inputStream, PNG_ENDIANITY, this);
View Full Code Here


         */
        if (mnfe.size != 0) {
          StringBuffer tmp = new StringBuffer("Warning, part ");
          tmp.append(mnfe.fullPath);
          tmp.append(" is encrypted, validation skipped.");
          repInfo.setMessage(new InfoMessage(tmp.toString()));
        }
        else if (mimeTypeMap.get(mnfe.mediaType) != null &&
             ! mnfe.fullPath.equals(SKIP_ROOT)) {
          String subDocName;
          int idxof = mnfe.fullPath.indexOf("/");
View Full Code Here

TOP

Related Classes of edu.harvard.hul.ois.jhove.InfoMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.