Package org.pentaho.reporting.engine.classic.core.modules.parser.ext

Source Code of org.pentaho.reporting.engine.classic.core.modules.parser.ext.ExtParserModuleInit

/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* Copyright (c) 2001 - 2013 Object Refinery Ltd, Pentaho Corporation and Contributors..  All rights reserved.
*/

package org.pentaho.reporting.engine.classic.core.modules.parser.ext;

import java.net.URL;

import org.pentaho.reporting.libraries.base.boot.ModuleInitializeException;
import org.pentaho.reporting.libraries.base.boot.ModuleInitializer;
import org.pentaho.reporting.libraries.base.util.ObjectUtilities;
import org.pentaho.reporting.libraries.xmlns.parser.ParserEntityResolver;

/**
* Performs the module initialization for the extended parser.
*
* @author Thomas Morgner
*/
public class ExtParserModuleInit implements ModuleInitializer
{
  /**
   * the Public ID for the extensible version of JFreeReport XML definitions.
   */
  public static final String PUBLIC_ID_EXTENDED =
      "-//JFreeReport//DTD report definition//EN//extended/version 0.8.5";
  /**
   * the Public ID for the old extensible version of JFreeReport XML definitions.
   */
  public static final String PUBLIC_ID_EXTENDED_084 =
      "-//JFreeReport//DTD report definition//EN//extended";
  public static final String SYSTEM_ID = "http://jfreereport.sourceforge.net/extreport-085.dtd";

  /**
   * Default Constructor.
   */
  public ExtParserModuleInit()
  {
  }

  /**
   * Initializes the ext-parser and registers it at the parser base module.
   *
   * @throws org.pentaho.reporting.libraries.base.boot.ModuleInitializeException
   *          if an error ocurres.
   */
  public void performInit()
      throws ModuleInitializeException
  {
    final ParserEntityResolver res = ParserEntityResolver.getDefaultResolver();

    final URL urlExtReportDTD = ObjectUtilities.getResource
        ("org/pentaho/reporting/engine/classic/core/modules/parser/ext/resources/extreport-085.dtd",
            ExtParserModuleInit.class);
    res.setDTDLocation(ExtParserModuleInit.PUBLIC_ID_EXTENDED, ExtParserModuleInit.SYSTEM_ID, urlExtReportDTD);
    res.setDTDLocation(ExtParserModuleInit.PUBLIC_ID_EXTENDED_084, ExtParserModuleInit.SYSTEM_ID, urlExtReportDTD);
    res.setDeprecatedDTDMessage(ExtParserModuleInit.PUBLIC_ID_EXTENDED_084,
        "The given public identifier for the XML document is deprecated. " +
            "Please use the current document type declaration instead: \n" +
            "  <!DOCTYPE report PUBLIC \n" +
            "      \"-//JFreeReport//DTD report definition//EN//extended/version 0.8.5\"\n" +
            "      \"http://jfreereport.sourceforge.net/extreport-085.dtd\">");

  }
}
TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.parser.ext.ExtParserModuleInit

TOP
Copyright © 2018 www.massapi.com. 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.