mrglavas    2004/06/18 14:49:15

  Modified:    java/src/org/apache/xerces/dom
                        DeferredDOMImplementationImpl.java
  Log:
  Fixing up file indentation as well as license and version info.
  
  Revision  Changes    Path
  1.2       +30 -27    
xml-xerces/java/src/org/apache/xerces/dom/DeferredDOMImplementationImpl.java
  
  Index: DeferredDOMImplementationImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/dom/DeferredDOMImplementationImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DeferredDOMImplementationImpl.java        15 Jun 2004 22:13:16 -0000      1.1
  +++ DeferredDOMImplementationImpl.java        18 Jun 2004 21:49:15 -0000      1.2
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999-2002,2004 The Apache Software Foundation.
  + * Copyright 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.
  @@ -18,33 +18,36 @@
   import org.w3c.dom.DOMImplementation;
   
   /**
  - * The DOMImplementation class is description of a particular
  + * <p>This DOMImplementation class is description of a particular
    * implementation of the Document Object Model. As such its data is
  - * static, shared by all instances of this implementation.
  - * <P>
  - * This implementation simply extends DOMImplementationImpl to differentiate
  - * between the Deferred DOM Implementations and Non-Deferred DOM Implementations.
  + * static, shared by all instances of this implementation.</p>
  + * 
  + * <p>This implementation simply extends DOMImplementationImpl to differentiate
  + * between the Deferred DOM Implementations and Non-Deferred DOM 
Implementations.</p>
  + *
  + * @author Neil Delima, IBM
    *
  - * @version 
  - * @since  
  + * @version $Id$
    */
  -public class DeferredDOMImplementationImpl extends DOMImplementationImpl {
  -     //
  -     // Data
  -     //
  -
  -     // static
  -
  -     /** Dom implementation singleton. */
  -     static DeferredDOMImplementationImpl singleton = new 
DeferredDOMImplementationImpl();
  -
  -
  -     //
  -     // Public methods
  -     //
  -
  -     /** NON-DOM: Obtain and return the single shared object */
  -     public static DOMImplementation getDOMImplementation() {
  -             return singleton;
  -     }
  +public class DeferredDOMImplementationImpl 
  +    extends DOMImplementationImpl {
  +    
  +    //
  +    // Data
  +    //
  +    
  +    // static
  +    
  +    /** Dom implementation singleton. */
  +    static DeferredDOMImplementationImpl singleton = new 
DeferredDOMImplementationImpl();
  +    
  +    
  +    //
  +    // Public methods
  +    //
  +    
  +    /** NON-DOM: Obtain and return the single shared object */
  +    public static DOMImplementation getDOMImplementation() {
  +        return singleton;
  +    }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to