Package com.adobe.epubcheck.ctc.epubpackage

Examples of com.adobe.epubcheck.ctc.epubpackage.PackageSpine


  @Override
  public boolean validate()
  {
    boolean result = true;
    PackageSpine spine = epack.getSpine();
    if (spine == null || (spine.getToc() == null && epack.getVersion() == EPUBVersion.VERSION_2))
    {
      report.message(MessageId.NCX_002, new MessageLocation(pathRootFile, -1, -1));
      result = false;
    }
    return result;
View Full Code Here

TOP

Related Classes of com.adobe.epubcheck.ctc.epubpackage.PackageSpine

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.