KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > improve > struts > taglib > layout > collection > NewsTag


1 package fr.improve.struts.taglib.layout.collection;
2
3 import javax.servlet.jsp.PageContext JavaDoc;
4
5 import fr.improve.struts.taglib.layout.util.NewsCollection;
6
7 /**
8  * Render any kind of collection object as an HTML table
9  * Differs from Collection because it display each member of the collection separatly
10  *
11  * This clas exists for historic reason.
12  * @author: Jean-Noel Ribette
13  **/

14 public class NewsTag extends CollectionTag {
15     protected void initPanel(PageContext JavaDoc in_pageContext) {
16         defaultPanel = new NewsCollection();
17         panel = defaultPanel;
18     }
19 }
20
Popular Tags