home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Livebrush / Install-LivebrushLite.air / livebrush.swf / scripts / fl / data / SimpleCollectionItem.as < prev   
Encoding:
Text File  |  2009-10-26  |  385 b   |  21 lines

  1. package fl.data
  2. {
  3.    public dynamic class SimpleCollectionItem
  4.    {
  5.       public var data:String;
  6.       
  7.       public var label:String;
  8.       
  9.       public function SimpleCollectionItem()
  10.       {
  11.          super();
  12.       }
  13.       
  14.       public function toString() : String
  15.       {
  16.          return "[SimpleCollectionItem: " + label + "," + data + "]";
  17.       }
  18.    }
  19. }
  20.  
  21.