All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.epubcheck.api.QuietReport Maven / Gradle / Ivy

Go to download

EPUBCheck is a tool to validate the conformance of EPUB publications against the EPUB specifications. EPUBCheck can be run as a standalone command-line tool or used as a Java library.

There is a newer version: 5.2.1
Show newest version
package com.adobe.epubcheck.api;

import com.adobe.epubcheck.messages.Message;
import com.adobe.epubcheck.util.FeatureEnum;

public final class QuietReport extends MasterReport
{

  public static final Report INSTANCE = new QuietReport();

  private QuietReport()
  {
    super(false);
  }

  @Override
  public void message(Message message, EPUBLocation location, Object... args)
  {

  }

  @Override
  public void info(String resource, FeatureEnum feature, String value)
  {
  }

  @Override
  public int generate()
  {
    return 0;
  }

  @Override
  public void initialize()
  {
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy