/* * This work is licensed under the Creative Commons Attribution 2.5 License. * To view a copy of this license, visit http://creativecommons.org/licenses/by/2.5/ * or send a letter to Creative Commons, 543 Howard Street, 5th Floor, * San Francisco, California, 94105, USA. * * Original developer: David Betz * */ using System; using System.Web.UI; using System.Web.UI.WebControls; namespace Squid.Web.Controls { internal class RssListTemplate : ITemplate { ListItemType type = new ListItemType(); public RssListTemplate(ListItemType type) { this.type = type; } public void InstantiateIn(Control container) { Literal lit = new Literal(); switch (type) { case ListItemType.Header: lit.Text = ""; break; } container.Controls.Add(lit); } } }