Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/EclipseRSSViewer.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/EclipseRSSViewer.java b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/EclipseRSSViewer.java
index 40e7b50d1..c45dfd16d 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/EclipseRSSViewer.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/EclipseRSSViewer.java
@@ -129,8 +129,12 @@ public class EclipseRSSViewer implements IIntroContentProvider {
/**
* Create the html content for this newsreader
+ *
* @param id
- * @param out a writer where the html will be written
+ * 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 out
+ * a writer where the html will be written
*/
@Override
public void createContent(String id, PrintWriter out) {

Back to the top