DeferredDOMImplementationImpl.java revision 286
0N/A/*
0N/A * reserved comment block
0N/A * DO NOT REMOVE OR ALTER!
0N/A */
0N/A/*
0N/A * Copyright 2004 The Apache Software Foundation.
0N/A *
0N/A * Licensed under the Apache License, Version 2.0 (the "License");
0N/A * you may not use this file except in compliance with the License.
0N/A * You may obtain a copy of the License at
0N/A *
0N/A * http://www.apache.org/licenses/LICENSE-2.0
0N/A *
0N/A * Unless required by applicable law or agreed to in writing, software
0N/A * distributed under the License is distributed on an "AS IS" BASIS,
0N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0N/A * See the License for the specific language governing permissions and
0N/A * limitations under the License.
0N/A */
0N/Apackage com.sun.org.apache.xerces.internal.dom;
0N/A
0N/Aimport org.w3c.dom.DOMImplementation;
0N/A
0N/A/**
0N/A * <p>This DOMImplementation class is description of a particular
0N/A * implementation of the Document Object Model. As such its data is
0N/A * static, shared by all instances of this implementation.</p>
0N/A *
0N/A * <p>This implementation simply extends DOMImplementationImpl to differentiate
0N/A * between the Deferred DOM Implementations and Non-Deferred DOM Implementations.</p>
0N/A *
0N/A * @xerces.internal
0N/A *
0N/A * @author Neil Delima, IBM
0N/A *
0N/A */
0N/Apublic class DeferredDOMImplementationImpl
0N/A extends DOMImplementationImpl {
0N/A
0N/A //
0N/A // Data
0N/A //
0N/A
0N/A // static
0N/A
0N/A /** Dom implementation singleton. */
0N/A static DeferredDOMImplementationImpl singleton = new DeferredDOMImplementationImpl();
0N/A
0N/A
0N/A //
0N/A // Public methods
0N/A //
0N/A
0N/A /** NON-DOM: Obtain and return the single shared object */
0N/A public static DOMImplementation getDOMImplementation() {
0N/A return singleton;
0N/A }
0N/A}
0N/A