Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-03-29 12:57:43 +0000
committerAlexander Kurtakov2019-03-29 12:57:43 +0000
commit9bfe2169f3e81843047c466765523e051f53e636 (patch)
treedaffc2a6a2484d583d0087d90c31a4b7a26af43f
parent4138f8e7ca65457ae8d7fa6a3e66075dca74e80d (diff)
downloadeclipse.platform.ua-9bfe2169f3e81843047c466765523e051f53e636.tar.gz
eclipse.platform.ua-9bfe2169f3e81843047c466765523e051f53e636.tar.xz
eclipse.platform.ua-9bfe2169f3e81843047c466765523e051f53e636.zip
Change-Id: Ia2142430a418682cdab8522bb17bc80ae464cce4 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-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