⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xsltcdtmmanager.java

📁 java1.6众多例子参考
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * Copyright 1999-2004 The Apache Software Foundation. * * Licensed 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. *//* * $Id: XSLTCDTMManager.java,v 1.2 2005/08/16 22:32:54 jeffsuttor Exp $ */package com.sun.org.apache.xalan.internal.xsltc.dom;import javax.xml.stream.XMLEventReader;import javax.xml.stream.XMLStreamReader;import javax.xml.transform.Source;import javax.xml.transform.dom.DOMSource;import javax.xml.transform.sax.SAXSource;import javax.xml.transform.stream.StreamSource;import javax.xml.transform.stax.StAXSource;import com.sun.org.apache.xml.internal.dtm.DTM;import com.sun.org.apache.xml.internal.dtm.ref.DTMDefaultBase;import com.sun.org.apache.xml.internal.dtm.DTMException;import com.sun.org.apache.xml.internal.dtm.DTMWSFilter;import com.sun.org.apache.xml.internal.dtm.ref.DTMManagerDefault;import com.sun.org.apache.xml.internal.res.XMLErrorResources;import com.sun.org.apache.xml.internal.res.XMLMessages;import com.sun.org.apache.xml.internal.utils.SystemIDResolver;import com.sun.org.apache.xalan.internal.xsltc.trax.DOM2SAX;import com.sun.org.apache.xalan.internal.xsltc.trax.StAXEvent2SAX;import com.sun.org.apache.xalan.internal.xsltc.trax.StAXStream2SAX;import org.xml.sax.InputSource;import org.xml.sax.SAXNotRecognizedException;import org.xml.sax.SAXNotSupportedException;import org.xml.sax.XMLReader;/** * The default implementation for the DTMManager. */public class XSLTCDTMManager extends DTMManagerDefault{	    /** The default class name to use as the manager. */    private static final String DEFAULT_CLASS_NAME =        "com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager";    private static final String DEFAULT_PROP_NAME =        "com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager";    /** Set this to true if you want a dump of the DTM after creation */    private static final boolean DUMPTREE = false;      /** Set this to true if you want basic diagnostics */    private static final boolean DEBUG = false;    /**     * Constructor DTMManagerDefault     *     */    public XSLTCDTMManager()    {        super();    }     /**     * Obtain a new instance of a <code>DTMManager</code>.     * This static method creates a new factory instance.     * The current implementation just returns a new XSLTCDTMManager instance.     */    public static XSLTCDTMManager newInstance()    {        return new XSLTCDTMManager();    }     /**     * Look up the class that provides the XSLTC DTM Manager service.     * The following lookup procedure is used to find the service provider.     * <ol>     * <li>The value of the     * <code>com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager</code> property, is     * checked.</li>     * <li>The <code>xalan.propeties</code> file is checked for a property     * of the same name.</li>     * <li>The     * <code>META-INF/services/com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager</code>     * file is checked.     * </ol>     * The default is <code>com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager</code>.     */    public static Class getDTMManagerClass() {        Class mgrClass = ObjectFactory.lookUpFactoryClass(DEFAULT_PROP_NAME,                                                          null,                                                          DEFAULT_CLASS_NAME);        // If no class found, default to this one.  (This should never happen -        // the ObjectFactory has already been told that the current class is        // the default).        return (mgrClass != null) ? mgrClass : XSLTCDTMManager.class;    }    /**     * Get an instance of a DTM, loaded with the content from the     * specified source.  If the unique flag is true, a new instance will     * always be returned.  Otherwise it is up to the DTMManager to return a     * new instance or an instance that it already created and may be being used     * by someone else.     * (I think more parameters will need to be added for error handling, and     * entity resolution).     *     * @param source the specification of the source object.     * @param unique true if the returned DTM must be unique, probably because it     * is going to be mutated.     * @param whiteSpaceFilter Enables filtering of whitespace nodes, and may     *                         be null.     * @param incremental true if the DTM should be built incrementally, if     *                    possible.     * @param doIndexing true if the caller considers it worth it to use     *                   indexing schemes.     *     * @return a non-null DTM reference.     */    public DTM getDTM(Source source, boolean unique,                      DTMWSFilter whiteSpaceFilter, boolean incremental,                      boolean doIndexing)    {        return getDTM(source, unique, whiteSpaceFilter, incremental,		      doIndexing, false, 0, true, false);    }    /**     * Get an instance of a DTM, loaded with the content from the     * specified source.  If the unique flag is true, a new instance will     * always be returned.  Otherwise it is up to the DTMManager to return a     * new instance or an instance that it already created and may be being used     * by someone else.     * (I think more parameters will need to be added for error handling, and     * entity resolution).     *     * @param source the specification of the source object.     * @param unique true if the returned DTM must be unique, probably because it     * is going to be mutated.     * @param whiteSpaceFilter Enables filtering of whitespace nodes, and may     *                         be null.     * @param incremental true if the DTM should be built incrementally, if     *                    possible.     * @param doIndexing true if the caller considers it worth it to use     *                   indexing schemes.     * @param buildIdIndex true if the id index table should be built.     *      * @return a non-null DTM reference.     */    public DTM getDTM(Source source, boolean unique,                      DTMWSFilter whiteSpaceFilter, boolean incremental,                      boolean doIndexing, boolean buildIdIndex)    {        return getDTM(source, unique, whiteSpaceFilter, incremental,		      doIndexing, false, 0, buildIdIndex, false);    }      /**     * Get an instance of a DTM, loaded with the content from the     * specified source.  If the unique flag is true, a new instance will     * always be returned.  Otherwise it is up to the DTMManager to return a     * new instance or an instance that it already created and may be being used     * by someone else.     * (I think more parameters will need to be added for error handling, and     * entity resolution).     *     * @param source the specification of the source object.     * @param unique true if the returned DTM must be unique, probably because it     * is going to be mutated.     * @param whiteSpaceFilter Enables filtering of whitespace nodes, and may     *                         be null.     * @param incremental true if the DTM should be built incrementally, if     *                    possible.     * @param doIndexing true if the caller considers it worth it to use     *                   indexing schemes.     * @param buildIdIndex true if the id index table should be built.     * @param newNameTable true if we want to use a separate ExpandedNameTable     *                     for this DTM.     *      * @return a non-null DTM reference.     */  public DTM getDTM(Source source, boolean unique,		    DTMWSFilter whiteSpaceFilter, boolean incremental,		    boolean doIndexing, boolean buildIdIndex,		    boolean newNameTable)  {    return getDTM(source, unique, whiteSpaceFilter, incremental,		  doIndexing, false, 0, buildIdIndex, newNameTable);  }    /**     * Get an instance of a DTM, loaded with the content from the     * specified source.  If the unique flag is true, a new instance will     * always be returned.  Otherwise it is up to the DTMManager to return a     * new instance or an instance that it already created and may be being used     * by someone else.     * (I think more parameters will need to be added for error handling, and     * entity resolution).     *     * @param source the specification of the source object.     * @param unique true if the returned DTM must be unique, probably because it     * is going to be mutated.     * @param whiteSpaceFilter Enables filtering of whitespace nodes, and may     *                         be null.     * @param incremental true if the DTM should be built incrementally, if     *                    possible.     * @param doIndexing true if the caller considers it worth it to use     *                   indexing schemes.     * @param hasUserReader true if <code>source</code> is a     *                      <code>SAXSource</code> object that has an     *                      <code>XMLReader</code>, that was specified by the     *                      user.     * @param size  Specifies initial size of tables that represent the DTM     * @param buildIdIndex true if the id index table should be built.     *     * @return a non-null DTM reference.     */    public DTM getDTM(Source source, boolean unique,                      DTMWSFilter whiteSpaceFilter, boolean incremental,                      boolean doIndexing, boolean hasUserReader, int size,                      boolean buildIdIndex)    {      return getDTM(source, unique, whiteSpaceFilter, incremental,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -