Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/HTMLElement.java')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/HTMLElement.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/HTMLElement.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/HTMLElement.java
index aac3a49df..d2babce9e 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/HTMLElement.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/HTMLElement.java
@@ -45,7 +45,7 @@ public class HTMLElement {
/**
* Add an attribute with the given name and value to this HTMLElement
- *
+ *
* @param attributeName
* @param attributeValue
*/
@@ -64,7 +64,7 @@ public class HTMLElement {
/**
* Get the attributes associated with this element
- *
+ *
* @return Returns the elementAttributes.
*/
public Map<String, String> getElementAttributes() {
@@ -76,7 +76,7 @@ public class HTMLElement {
/**
* Set the attributes associated with this element
- *
+ *
* @param elementAttributes
* The elementAttributes to set.
*/
@@ -86,7 +86,7 @@ public class HTMLElement {
/**
* Get this element's content
- *
+ *
* @return Returns the elementContent.
*/
public Vector<Object> getElementContent() {
@@ -98,7 +98,7 @@ public class HTMLElement {
/**
* Set this element's content
- *
+ *
* @param elementContent
* The elementContent to set.
*/
@@ -108,7 +108,7 @@ public class HTMLElement {
/**
* Get the name of this element
- *
+ *
* @return Returns the elementName.
*/
public String getElementName() {
@@ -117,7 +117,7 @@ public class HTMLElement {
/**
* Set the name of this element
- *
+ *
* @param elementName
* The elementName to set.
*/

Back to the top