Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IIntroXHTMLContentProvider.java')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IIntroXHTMLContentProvider.java56
1 files changed, 28 insertions, 28 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IIntroXHTMLContentProvider.java b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IIntroXHTMLContentProvider.java
index 68367e921..fd227eaf2 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IIntroXHTMLContentProvider.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IIntroXHTMLContentProvider.java
@@ -24,34 +24,34 @@ import org.w3c.dom.Element;
*/
public interface IIntroXHTMLContentProvider extends IIntroContentProvider {
- /**
- * Create XHTML content in the provided parent DOM Element. A typical usage
- * for this method would be: <br>
- *
- * <br>
- * <code>
- * &lt;contentProvider id=&quot;contentProviderId&quot;
- * class=&quot;xx.yy.IntroContentProvider&quot;
- * pluginId=&quot;xx.yy.id&quot;/&gt; <br></code> <br>
- *
- * A parent DOM Element will be passed to allow for adding dynamic content
- * by manipulating the Java XML DOM for the XHTML file. A div is created
- * with an id equal to the id specified in the contentProvider element, and
- * is passed as the parent. In the above example, the DOM element
- * representing a div with id=myContentProviderDivId would be the parent
- * passed.
- *
- * @param id
- * the unique identifier of the content element. The same content
- * provider class can be reused for several elements and the id
- * can be used to tell them apart.
- *
- * @param parent
- * the parent xml Element where dynamic content will be added as
- * children.
- *
- */
- public void createContent(String id, Element parent);
+ /**
+ * Create XHTML content in the provided parent DOM Element. A typical usage
+ * for this method would be: <br>
+ *
+ * <br>
+ * <code>
+ * &lt;contentProvider id=&quot;contentProviderId&quot;
+ * class=&quot;xx.yy.IntroContentProvider&quot;
+ * pluginId=&quot;xx.yy.id&quot;/&gt; <br></code> <br>
+ *
+ * A parent DOM Element will be passed to allow for adding dynamic content
+ * by manipulating the Java XML DOM for the XHTML file. A div is created
+ * with an id equal to the id specified in the contentProvider element, and
+ * is passed as the parent. In the above example, the DOM element
+ * representing a div with id=myContentProviderDivId would be the parent
+ * passed.
+ *
+ * @param id
+ * the unique identifier of the content element. The same content
+ * provider class can be reused for several elements and the id
+ * can be used to tell them apart.
+ *
+ * @param parent
+ * the parent xml Element where dynamic content will be added as
+ * children.
+ *
+ */
+ public void createContent(String id, Element parent);

Back to the top