mrglavas    2005/04/17 18:09:11

  Modified:    java/src/org/apache/html/dom HTMLOListElementImpl.java
                        HTMLObjectElementImpl.java HTMLMapElementImpl.java
                        HTMLLinkElementImpl.java
                        HTMLOptGroupElementImpl.java
                        HTMLModElementImpl.java HTMLMenuElementImpl.java
                        HTMLMetaElementImpl.java
  Log:
  Adding serialVersionUID to serializable classes.
  
  Revision  Changes    Path
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLOListElementImpl.java
  
  Index: HTMLOListElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLOListElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLOListElementImpl.java 5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLOListElementImpl.java 18 Apr 2005 01:09:10 -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.HTMLOListElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLOListElement
   {
   
  -    
  +    private static final long serialVersionUID = 3544958748826349621L;
  +
       public boolean getCompact()
       {
           return getBinary( "compact" );
  
  
  
  1.11      +3 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLObjectElementImpl.java
  
  Index: HTMLObjectElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLObjectElementImpl.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HTMLObjectElementImpl.java        5 Oct 2004 03:23:48 -0000       1.10
  +++ HTMLObjectElementImpl.java        18 Apr 2005 01:09:10 -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.HTMLObjectElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,7 @@
       implements HTMLObjectElement, HTMLFormControl
   {
       
  -    
  +    private static final long serialVersionUID = 3617014156759479090L;
   
       public String getCode()
       {
  
  
  
  1.10      +4 -4      
xml-xerces/java/src/org/apache/html/dom/HTMLMapElementImpl.java
  
  Index: HTMLMapElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLMapElementImpl.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- HTMLMapElementImpl.java   5 Oct 2004 03:23:48 -0000       1.9
  +++ HTMLMapElementImpl.java   18 Apr 2005 01:09:10 -0000      1.10
  @@ -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.
  @@ -31,8 +31,8 @@
       implements HTMLMapElement
   {
   
  -    
  -    
  +    private static final long serialVersionUID = 3257847692725270834L;
  +
       public HTMLCollection getAreas()
       {
           if ( _areas == null )
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLLinkElementImpl.java
  
  Index: HTMLLinkElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLLinkElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLLinkElementImpl.java  5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLLinkElementImpl.java  18 Apr 2005 01:09:10 -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.HTMLLinkElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLLinkElement
   {
   
  -    
  +    private static final long serialVersionUID = 4050763784366929202L;
  +
       public boolean getDisabled()
       {
           return getBinary( "disabled" );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLOptGroupElementImpl.java
  
  Index: HTMLOptGroupElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLOptGroupElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLOptGroupElementImpl.java      5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLOptGroupElementImpl.java      18 Apr 2005 01:09:10 -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.HTMLOptGroupElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLOptGroupElement
   {
   
  -        
  +    private static final long serialVersionUID = 3258416110138046776L;
  +
       public boolean getDisabled()
       {
           return getBinary( "disabled" );
  
  
  
  1.9       +4 -6      
xml-xerces/java/src/org/apache/html/dom/HTMLModElementImpl.java
  
  Index: HTMLModElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLModElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLModElementImpl.java   5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLModElementImpl.java   18 Apr 2005 01:09:10 -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.HTMLModElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,8 +29,8 @@
       implements HTMLModElement
   {
   
  -    
  -    
  +    private static final long serialVersionUID = 3905801976649625913L;
  +
       public String getCite()
       {
           return getAttribute( "cite" );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLMenuElementImpl.java
  
  Index: HTMLMenuElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLMenuElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLMenuElementImpl.java  5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLMenuElementImpl.java  18 Apr 2005 01:09:10 -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.HTMLMenuElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLMenuElement
   {
   
  -    
  +    private static final long serialVersionUID = 3256441421648247094L;
  +
       public boolean getCompact()
       {
           return getBinary( "compact" );
  
  
  
  1.9       +4 -5      
xml-xerces/java/src/org/apache/html/dom/HTMLMetaElementImpl.java
  
  Index: HTMLMetaElementImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLMetaElementImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTMLMetaElementImpl.java  5 Oct 2004 03:23:48 -0000       1.8
  +++ HTMLMetaElementImpl.java  18 Apr 2005 01:09:10 -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.HTMLMetaElement;
   
  -
   /**
    * @xerces.internal
    * @version $Revision$ $Date$
  @@ -31,7 +29,8 @@
       implements HTMLMetaElement
   {
   
  -    
  +    private static final long serialVersionUID = 3256722862131197489L;
  +
       public String getContent()
       {
           return getAttribute( "content" );
  
  
  

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

Reply via email to