summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/gnu/xml/dom/html2/DomHTMLTableRowElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/xml/dom/html2/DomHTMLTableRowElement.java')
-rw-r--r--libjava/classpath/gnu/xml/dom/html2/DomHTMLTableRowElement.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/libjava/classpath/gnu/xml/dom/html2/DomHTMLTableRowElement.java b/libjava/classpath/gnu/xml/dom/html2/DomHTMLTableRowElement.java
index ecd07a743b4..9943585f4ec 100644
--- a/libjava/classpath/gnu/xml/dom/html2/DomHTMLTableRowElement.java
+++ b/libjava/classpath/gnu/xml/dom/html2/DomHTMLTableRowElement.java
@@ -1,4 +1,4 @@
-/* DomHTMLTableRowElement.java --
+/* DomHTMLTableRowElement.java --
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -134,7 +134,7 @@ public class DomHTMLTableRowElement
{
setHTMLAttribute("align", align);
}
-
+
public String getBgColor()
{
return getHTMLAttribute("bgcolor");
@@ -144,7 +144,7 @@ public class DomHTMLTableRowElement
{
setHTMLAttribute("bgcolor", bgColor);
}
-
+
public String getCh()
{
return getHTMLAttribute("char");
@@ -154,7 +154,7 @@ public class DomHTMLTableRowElement
{
setHTMLAttribute("char", ch);
}
-
+
public String getChOff()
{
return getHTMLAttribute("charoff");
@@ -164,7 +164,7 @@ public class DomHTMLTableRowElement
{
setHTMLAttribute("charoff", chOff);
}
-
+
public String getVAlign()
{
return getHTMLAttribute("valign");
@@ -199,9 +199,9 @@ public class DomHTMLTableRowElement
}
removeChild(ref);
}
-
+
Node getCell(final int index)
- {
+ {
int i = 0;
for (Node ctx = getFirstChild(); ctx != null;
ctx = ctx.getNextSibling())
@@ -224,6 +224,5 @@ public class DomHTMLTableRowElement
}
return null;
}
-
-}
+}
OpenPOWER on IntegriCloud