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

org.apache.batik.util.XMLResourceDescriptor Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */

package org.apache.batik.util;

import java.io.InputStream;
import java.io.IOException;
import java.util.Properties;
import java.util.MissingResourceException;

/**
 * This class describes the XML resources needed to use the various batik
 * modules.
 *
 * @author Thierry Kormann
 * @version $Id: XMLResourceDescriptor.java 1808001 2017-09-11 09:51:29Z ssteiner $
 */
public class XMLResourceDescriptor {

    /**
     * The XML parser class name key.
     */
    public static final String XML_PARSER_CLASS_NAME_KEY =
        "org.xml.sax.driver";

    /**
     * The CSS parser class name key.
     */
    public static final String CSS_PARSER_CLASS_NAME_KEY =
        "org.w3c.css.sac.driver";

    /**
     * The resources file name
     */
    public static final String RESOURCES =
        "resources/XMLResourceDescriptor.properties";

    /**
     * The resource bundle
     */
    protected static Properties parserProps = null;

    /**
     * The class name of the XML parser to use.
     */
    protected static String xmlParserClassName;

    /**
     * The class name of the CSS parser to use.
     */
    protected static String cssParserClassName;

    protected static synchronized Properties getParserProps() {
        if (parserProps != null) return parserProps;

        parserProps = new Properties();
        try {
            Class cls = XMLResourceDescriptor.class;
            InputStream is = cls.getResourceAsStream(RESOURCES);
            parserProps.load(is);
        } catch (IOException ioe) {
            throw new MissingResourceException(ioe.getMessage(),
                                               RESOURCES, null);
        }
        return parserProps;
    }

    /**
     * Returns the class name of the XML parser to use.
     *
     * 

This method first checks if any XML parser has been specified using * the setXMLParserClassName method. If any, this method will * return the value of the property 'org.xml.sax.driver' specified in the * resources/XMLResourceDescriptor.properties resource file. */ public static String getXMLParserClassName() { if (xmlParserClassName == null) { xmlParserClassName = getParserProps().getProperty (XML_PARSER_CLASS_NAME_KEY); } return xmlParserClassName; } /** * Sets the class name of the XML parser to use. * * @param xmlParserClassName the classname of the XML parser */ public static void setXMLParserClassName(String xmlParserClassName) { XMLResourceDescriptor.xmlParserClassName = xmlParserClassName; } /** * Returns the class name of the CSS parser to use. * *

This method first checks if any CSS parser has been * specified using the setCSSParserClassName method. If * any, this method will return the value of the property * 'org.w3c.css.sac.driver' specified in the * resources/XMLResourceDescriptor.properties resource * file. */ public static String getCSSParserClassName() { if (cssParserClassName == null) { cssParserClassName = getParserProps().getProperty (CSS_PARSER_CLASS_NAME_KEY); } return cssParserClassName; } /** * Sets the class name of the CSS parser to use. * * @param cssParserClassName the classname of the CSS parser */ public static void setCSSParserClassName(String cssParserClassName) { XMLResourceDescriptor.cssParserClassName = cssParserClassName; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy