mrglavas 2005/04/17 18:20:21
Modified: java/src/org/apache/html/dom HTMLTableElementImpl.java
HTMLTableColElementImpl.java
HTMLTextAreaElementImpl.java
HTMLTableCellElementImpl.java
HTMLTableSectionElementImpl.java
HTMLTitleElementImpl.java
HTMLTableCaptionElementImpl.java
HTMLUListElementImpl.java
HTMLTableRowElementImpl.java
Log:
Adding serialVersionUID to serializable classes.
Revision Changes Path
1.14 +5 -6
xml-xerces/java/src/org/apache/html/dom/HTMLTableElementImpl.java
Index: HTMLTableElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTableElementImpl.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- HTMLTableElementImpl.java 5 Oct 2004 03:23:48 -0000 1.13
+++ HTMLTableElementImpl.java 18 Apr 2005 01:20:21 -0000 1.14
@@ -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,7 +15,6 @@
*/
package org.apache.html.dom;
-
import org.w3c.dom.Node;
import org.w3c.dom.html.HTMLCollection;
import org.w3c.dom.html.HTMLElement;
@@ -24,7 +23,6 @@
import org.w3c.dom.html.HTMLTableRowElement;
import org.w3c.dom.html.HTMLTableSectionElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -36,8 +34,9 @@
extends HTMLElementImpl
implements HTMLTableElement
{
-
-
+
+ private static final long serialVersionUID = 3977585787963651891L;
+
public synchronized HTMLTableCaptionElement getCaption()
{
Node child;
1.9 +5 -6
xml-xerces/java/src/org/apache/html/dom/HTMLTableColElementImpl.java
Index: HTMLTableColElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTableColElementImpl.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- HTMLTableColElementImpl.java 5 Oct 2004 03:23:48 -0000 1.8
+++ HTMLTableColElementImpl.java 18 Apr 2005 01:20:21 -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.HTMLTableColElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -30,8 +28,9 @@
extends HTMLElementImpl
implements HTMLTableColElement
{
-
-
+
+ private static final long serialVersionUID = 3257845497996915254L;
+
public String getAlign()
{
return capitalize( getAttribute( "align" ) );
1.9 +5 -6
xml-xerces/java/src/org/apache/html/dom/HTMLTextAreaElementImpl.java
Index: HTMLTextAreaElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTextAreaElementImpl.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- HTMLTextAreaElementImpl.java 5 Oct 2004 03:23:48 -0000 1.8
+++ HTMLTextAreaElementImpl.java 18 Apr 2005 01:20:21 -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.HTMLTextAreaElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -30,8 +28,9 @@
extends HTMLElementImpl
implements HTMLTextAreaElement, HTMLFormControl
{
-
-
+
+ private static final long serialVersionUID = 3257852073558357816L;
+
public String getDefaultValue()
{
// ! NOT FULLY IMPLEMENTED !
1.9 +4 -5
xml-xerces/java/src/org/apache/html/dom/HTMLTableCellElementImpl.java
Index: HTMLTableCellElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTableCellElementImpl.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- HTMLTableCellElementImpl.java 5 Oct 2004 03:23:48 -0000 1.8
+++ HTMLTableCellElementImpl.java 18 Apr 2005 01:20:21 -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,12 +15,10 @@
*/
package org.apache.html.dom;
-
import org.w3c.dom.Node;
import org.w3c.dom.html.HTMLTableCellElement;
import org.w3c.dom.html.HTMLTableRowElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -32,7 +30,8 @@
extends HTMLElementImpl
implements HTMLTableCellElement
{
-
+
+ private static final long serialVersionUID = 3256722862214820152L;
public int getCellIndex()
{
1.10 +5 -6
xml-xerces/java/src/org/apache/html/dom/HTMLTableSectionElementImpl.java
Index: HTMLTableSectionElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTableSectionElementImpl.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- HTMLTableSectionElementImpl.java 5 Oct 2004 03:23:48 -0000 1.9
+++ HTMLTableSectionElementImpl.java 18 Apr 2005 01:20:21 -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.
@@ -15,14 +15,12 @@
*/
package org.apache.html.dom;
-
import org.w3c.dom.Node;
import org.w3c.dom.html.HTMLCollection;
import org.w3c.dom.html.HTMLElement;
import org.w3c.dom.html.HTMLTableRowElement;
import org.w3c.dom.html.HTMLTableSectionElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -34,8 +32,9 @@
extends HTMLElementImpl
implements HTMLTableSectionElement
{
-
-
+
+ private static final long serialVersionUID = 3257001042984973618L;
+
public String getAlign()
{
return capitalize( getAttribute( "align" ) );
1.10 +5 -6
xml-xerces/java/src/org/apache/html/dom/HTMLTitleElementImpl.java
Index: HTMLTitleElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTitleElementImpl.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- HTMLTitleElementImpl.java 5 Oct 2004 03:23:48 -0000 1.9
+++ HTMLTitleElementImpl.java 18 Apr 2005 01:20:21 -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.
@@ -15,12 +15,10 @@
*/
package org.apache.html.dom;
-
import org.w3c.dom.Node;
import org.w3c.dom.Text;
import org.w3c.dom.html.HTMLTitleElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -32,8 +30,9 @@
extends HTMLElementImpl
implements HTMLTitleElement
{
-
-
+
+ private static final long serialVersionUID = 4050769294810034992L;
+
public String getText()
{
Node child;
1.9 +5 -6
xml-xerces/java/src/org/apache/html/dom/HTMLTableCaptionElementImpl.java
Index: HTMLTableCaptionElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTableCaptionElementImpl.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- HTMLTableCaptionElementImpl.java 5 Oct 2004 03:23:48 -0000 1.8
+++ HTMLTableCaptionElementImpl.java 18 Apr 2005 01:20:21 -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.HTMLTableCaptionElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -30,8 +28,9 @@
extends HTMLElementImpl
implements HTMLTableCaptionElement
{
-
-
+
+ private static final long serialVersionUID = 3546641018679144498L;
+
public String getAlign()
{
return getAttribute( "align" );
1.9 +5 -6
xml-xerces/java/src/org/apache/html/dom/HTMLUListElementImpl.java
Index: HTMLUListElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLUListElementImpl.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- HTMLUListElementImpl.java 5 Oct 2004 03:23:48 -0000 1.8
+++ HTMLUListElementImpl.java 18 Apr 2005 01:20:21 -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.HTMLUListElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -30,8 +28,9 @@
extends HTMLElementImpl
implements HTMLUListElement
{
-
-
+
+ private static final long serialVersionUID = 3257002146657480753L;
+
public boolean getCompact()
{
return getBinary( "compact" );
1.10 +4 -5
xml-xerces/java/src/org/apache/html/dom/HTMLTableRowElementImpl.java
Index: HTMLTableRowElementImpl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/html/dom/HTMLTableRowElementImpl.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- HTMLTableRowElementImpl.java 5 Oct 2004 03:23:48 -0000 1.9
+++ HTMLTableRowElementImpl.java 18 Apr 2005 01:20:21 -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.
@@ -15,7 +15,6 @@
*/
package org.apache.html.dom;
-
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.html.HTMLCollection;
@@ -25,7 +24,6 @@
import org.w3c.dom.html.HTMLTableRowElement;
import org.w3c.dom.html.HTMLTableSectionElement;
-
/**
* @xerces.internal
* @version $Revision$ $Date$
@@ -38,7 +36,8 @@
implements HTMLTableRowElement
{
-
+ private static final long serialVersionUID = 3545231444772468278L;
+
public int getRowIndex()
{
Node parent;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]