Package fr.sewatech.sewatoool.impress.model

Examples of fr.sewatech.sewatoool.impress.model.TocDesc


   * @throws Exception
   */
  public void generateToc(ImpressDocument document, boolean longTOC,
      boolean shortTOC) throws Exception {
    BundleHelper bundle = BundleHelper.getInstance();
    TocDesc toc = new TocDesc(document.listPages(), bundle.getTocTitle());
    toc.purge();

    TocDesc shortToc = new TocDesc(toc);

    if (longTOC) {
      logger.info("Génération de la table des matières complète");
      int slideNumber = document.findPageByName(bundle.getTocPageName());

View Full Code Here

TOP

Related Classes of fr.sewatech.sewatoool.impress.model.TocDesc

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.