/** RSS Class **/ /** Version 1.1 **/ /** 2006/1/15 By Yusuke Wada **/ class Rss{ public var title:String; public var link:String; public var item:Array; public function Rss(){ title = new String(); link = new String(); item = new Array(); } public function setTitle(title:String):Void{ this.title = title; } public function setLink(link:String):Void{ this.link = link; } public function setItem(title,link,description,date:Date):Void{ item.push(new Object()); item[item.length-1].title = title; item[item.length-1].link = link; item[item.length-1].description = description; item[item.length-1].date = date; } }