diff options
author | Chris Goldthorpe | 2009-10-14 16:48:11 +0000 |
---|---|---|
committer | Chris Goldthorpe | 2009-10-14 16:48:11 +0000 |
commit | 9ebf49c71db4bc58775439799ed388b7f0ebeaf6 (patch) | |
tree | e13c428d3e77d77df0e8c6f3e2f5a2b808645432 /org.eclipse.ui.intro | |
parent | f7f1ef39a1902594a841b65ce5a7a41c942c03bd (diff) | |
download | eclipse.platform.ua-9ebf49c71db4bc58775439799ed388b7f0ebeaf6.tar.gz eclipse.platform.ua-9ebf49c71db4bc58775439799ed388b7f0ebeaf6.tar.xz eclipse.platform.ua-9ebf49c71db4bc58775439799ed388b7f0ebeaf6.zip |
Updated Javadoc
Diffstat (limited to 'org.eclipse.ui.intro')
-rw-r--r-- | org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/EclipseRSSViewer.java | 31 |
1 files changed, 30 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 1b2fbb878..e7da293e4 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 @@ -57,7 +57,36 @@ import org.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; /** - * Content provider which allows a news reader to be included in intro + * A content provider which allows a news reader to be included in dynamic intro content. + * <p> + * The id for the contentProvider tag must consist of the following attributes. Each of these attributes must be separated by '##'. + * <ul> + * <TABLE CELLPADDING=6 FRAME=BOX> + * + * <THEAD> + * <TR> <TH>Attribute</TH> <TH>Description</TH> </TR> + * </THEAD> + * + * <TBODY> + * <TR> <TD>url</TD> <TD>RSS news feed url</TD> </TR> + * <TR> <TD>welcome_items</TD> <TD>Number of news feed to be displayed</TD> </TR> + * <TR> <TD>no_news_url</TD> <TD>Alternative url for news feed</TD> </TR> + * <TR> <TD>no_news_text</TD> <TD>Text for the alternative url</TD> </TR> + * </TBODY> + * + * </TABLE> + * </ul> + * For example: + * <p> + * <contentProvider <br> + * <ul> + * id="url=http://www.eclipse.org/home/eclipsenews.rss##welcome_items=5##no_news_url=http://www.eclipse.org/community/##no_news_text=Welcome to the Eclipse Community Page" <br> + * pluginId="org.eclipse.ui.intro" <br> + * class="org.eclipse.ui.intro.contentproviders.EclipseRSSViewer"> <br> + * </ul> + * </contentProvider> + * </p> + * * @since 3.4 */ |