mrglavas    2005/04/17 17:46:05

  Modified:    java/src/org/apache/html/dom HTMLHeadElementImpl.java
                        HTMLFrameElementImpl.java HTMLHRElementImpl.java
                        HTMLFontElementImpl.java
                        HTMLFrameSetElementImpl.java
                        HTMLHeadingElementImpl.java
                        HTMLFormElementImpl.java
  Log:
  Adding serialVersionUID to serializable classes.
  
  Revision  Changes    Path
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLHeadElementImpl.java
  
  Index: HTMLHeadElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLHeadElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLHeadElementImpl.java  5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLHeadElementImpl.java  18 Apr 2005 00:46:04 -0000      1.9
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999,2000,2004 The Apache Software Foundation.
  + * Copyright 1999,2000,2004,2005 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.
  @@ -15,10 +15,8 @@
    */
   package org.apache.html.dom;
   
  -
   import org.w3c.dom.html.HTMLHeadElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLHeadElement
   {
   
  -    
  +    private static final long serialVersionUID = 3905803093357770804L;
  +
       public String getProfile()
       {
           return getAttribute( "profile" );
  
  
  
  1.11      +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLFrameElementImpl.java
  
  Index: HTMLFrameElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLFrameElementImpl.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HTMLFrameElementImpl.java 5 Oct 2004 03:23:48 -0000       1.10
  +++ HTMLFrameElementImpl.java 18 Apr 2005 00:46:04 -0000      1.11
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999,2000,2004 The Apache Software Foundation.
  + * Copyright 1999,2000,2004,2005 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.
  @@ -15,10 +15,8 @@
    */
   package org.apache.html.dom;
   
  -
   import org.w3c.dom.html.HTMLFrameElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLFrameElement
   {
   
  -    
  +    private static final long serialVersionUID = 3905523791584243765L;
  +
       public String getFrameBorder()
       {
           return getAttribute( "frameborder" );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLHRElementImpl.java
  
  Index: HTMLHRElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLHRElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLHRElementImpl.java    5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLHRElementImpl.java    18 Apr 2005 00:46:04 -0000      1.9
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999,2000,2004 The Apache Software Foundation.
  + * Copyright 1999,2000,2004,2005 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.
  @@ -15,10 +15,8 @@
    */
   package org.apache.html.dom;
   
  -
   import org.w3c.dom.html.HTMLHRElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLHRElement
   {
   
  -    
  +    private static final long serialVersionUID = 3257283617338963251L;
  +
       public String getAlign()
       {
           return capitalize( getAttribute( "align" ) );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLFontElementImpl.java
  
  Index: HTMLFontElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLFontElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLFontElementImpl.java  5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLFontElementImpl.java  18 Apr 2005 00:46:04 -0000      1.9
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999,2000,2004 The Apache Software Foundation.
  + * Copyright 1999,2000,2004,2005 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.
  @@ -15,10 +15,8 @@
    */
   package org.apache.html.dom;
   
  -
   import org.w3c.dom.html.HTMLFontElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLFontElement
   {
   
  -    
  +    private static final long serialVersionUID = 3257282535158264883L;
  +
       public String getColor()
       {
           return capitalize( getAttribute( "color" ) );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLFrameSetElementImpl.java
  
  Index: HTMLFrameSetElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLFrameSetElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLFrameSetElementImpl.java      5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLFrameSetElementImpl.java      18 Apr 2005 00:46:04 -0000      1.9
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999,2000,2004 The Apache Software Foundation.
  + * Copyright 1999,2000,2004,2005 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.
  @@ -15,10 +15,8 @@
    */
   package org.apache.html.dom;
   
  -
   import org.w3c.dom.html.HTMLFrameSetElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLFrameSetElement
   {
   
  -    
  +    private static final long serialVersionUID = 4049914961339888440L;
  +
       public String getCols()
       {
           return getAttribute( "cols" );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLHeadingElementImpl.java
  
  Index: HTMLHeadingElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLHeadingElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLHeadingElementImpl.java       5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLHeadingElementImpl.java       18 Apr 2005 00:46:04 -0000      1.9
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999,2000,2004 The Apache Software Foundation.
  + * Copyright 1999,2000,2004,2005 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.
  @@ -15,10 +15,8 @@
    */
   package org.apache.html.dom;
   
  -
   import org.w3c.dom.html.HTMLHeadingElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLHeadingElement
   {
   
  -    
  +    private static final long serialVersionUID = 3906362731924698937L;
  +
       public String getAlign()
       {
           return getCapitalized( "align" );
  
  
  
  1.11      +4 -4      
xml-xerces/java/src/org/apache/html/dom/HTMLFormElementImpl.java
  
  Index: HTMLFormElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLFormElementImpl.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HTMLFormElementImpl.java  5 Oct 2004 03:23:48 -0000       1.10
  +++ HTMLFormElementImpl.java  18 Apr 2005 00:46:04 -0000      1.11
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999,2000,2004 The Apache Software Foundation.
  + * Copyright 1999,2000,2004,2005 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.
  @@ -20,7 +20,6 @@
   import org.w3c.dom.html.HTMLCollection;
   import org.w3c.dom.html.HTMLFormElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -33,7 +32,8 @@
       implements HTMLFormElement
   {
   
  -    
  +    private static final long serialVersionUID = 3690757284875876658L;
  +
       public HTMLCollection getElements()
       {
           if ( _elements == null )
  
  
  

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

Reply via email to