home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / HexiomConnect.swf / scripts / mx / core / IRepeaterClient.as < prev    next >
Text File  |  2008-08-29  |  565b  |  24 lines

  1. package mx.core
  2. {
  3.    public interface IRepeaterClient
  4.    {
  5.        
  6.       
  7.       function get instanceIndices() : Array;
  8.       
  9.       function set instanceIndices(param1:Array) : void;
  10.       
  11.       function get isDocument() : Boolean;
  12.       
  13.       function set repeaters(param1:Array) : void;
  14.       
  15.       function initializeRepeaterArrays(param1:IRepeaterClient) : void;
  16.       
  17.       function get repeaters() : Array;
  18.       
  19.       function set repeaterIndices(param1:Array) : void;
  20.       
  21.       function get repeaterIndices() : Array;
  22.    }
  23. }
  24.