mrglavas    2005/04/17 18:04:17

  Modified:    java/src/org/apache/html/dom HTMLImageElementImpl.java
                        HTMLLIElementImpl.java HTMLLabelElementImpl.java
                        HTMLInputElementImpl.java HTMLHtmlElementImpl.java
                        HTMLLegendElementImpl.java
                        HTMLIsIndexElementImpl.java
                        HTMLIFrameElementImpl.java
  Log:
  Adding serialVersionUID to serializable classes.
  
  Revision  Changes    Path
  1.9       +5 -6      
xml-xerces/java/src/org/apache/html/dom/HTMLImageElementImpl.java
  
  Index: HTMLImageElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLImageElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLImageElementImpl.java 5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLImageElementImpl.java 18 Apr 2005 01:04:17 -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.HTMLImageElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,8 +29,9 @@
       implements HTMLImageElement
   {
   
  -    
  -       public String getLowSrc()
  +    private static final long serialVersionUID = 3545514006426300471L;
  +
  +    public String getLowSrc()
       {
           return getAttribute( "lowsrc" );
       }
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLLIElementImpl.java
  
  Index: HTMLLIElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLLIElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLLIElementImpl.java    5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLLIElementImpl.java    18 Apr 2005 01:04:17 -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.HTMLLIElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
            implements HTMLLIElement
   {
   
  -    
  +    private static final long serialVersionUID = 3258417244009607225L;
  +
       public String getType()
       {
           return getAttribute( "type" );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLLabelElementImpl.java
  
  Index: HTMLLabelElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLLabelElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLLabelElementImpl.java 5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLLabelElementImpl.java 18 Apr 2005 01:04:17 -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.HTMLLabelElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLLabelElement, HTMLFormControl
   {
   
  -    
  +    private static final long serialVersionUID = 3834594305066416178L;
  +
       public String getAccessKey()
       {
           String    accessKey;
  
  
  
  1.9       +5 -6      
xml-xerces/java/src/org/apache/html/dom/HTMLInputElementImpl.java
  
  Index: HTMLInputElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLInputElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLInputElementImpl.java 5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLInputElementImpl.java 18 Apr 2005 01:04:17 -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.HTMLInputElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -30,8 +28,9 @@
       extends HTMLElementImpl
       implements HTMLInputElement, HTMLFormControl
   {
  -    
  -    
  +
  +    private static final long serialVersionUID = 3905799764707980082L;
  +
       public String getDefaultValue()
       {
           // ! NOT FULLY IMPLEMENTED !
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLHtmlElementImpl.java
  
  Index: HTMLHtmlElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLHtmlElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLHtmlElementImpl.java  5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLHtmlElementImpl.java  18 Apr 2005 01:04:17 -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.HTMLHtmlElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLHtmlElement
   {
   
  -    
  +    private static final long serialVersionUID = 3257285846578443060L;
  +
       public String getVersion()
       {
           return capitalize( getAttribute( "version" ) );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLLegendElementImpl.java
  
  Index: HTMLLegendElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLLegendElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLLegendElementImpl.java        5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLLegendElementImpl.java        18 Apr 2005 01:04:17 -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.HTMLLegendElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLLegendElement
   {
   
  -    
  +    private static final long serialVersionUID = 3257846567426865457L;
  +
       public String getAccessKey()
       {
           String    accessKey;
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLIsIndexElementImpl.java
  
  Index: HTMLIsIndexElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLIsIndexElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLIsIndexElementImpl.java       5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLIsIndexElementImpl.java       18 Apr 2005 01:04:17 -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.HTMLIsIndexElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLIsIndexElement
   {
   
  -    
  +    private static final long serialVersionUID = 3688508787891777847L;
  +
       public String getPrompt()
       {
           return getAttribute( "prompt" );
  
  
  
  1.11      +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLIFrameElementImpl.java
  
  Index: HTMLIFrameElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLIFrameElementImpl.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HTMLIFrameElementImpl.java        5 Oct 2004 03:23:48 -0000       1.10
  +++ HTMLIFrameElementImpl.java        18 Apr 2005 01:04:17 -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.HTMLIFrameElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLIFrameElement
   {
   
  -    
  +    private static final long serialVersionUID = 3617297817824014903L;
  +
       public String getAlign()
       {
           return capitalize( getAttribute( "align" ) );
  
  
  

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

Reply via email to