home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / core / ITextFieldFactory.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  186 b   |  11 lines

  1. package mx.core
  2. {
  3.    import flash.text.TextField;
  4.    
  5.    public interface ITextFieldFactory
  6.    {
  7.       function createTextField(param1:IFlexModuleFactory) : TextField;
  8.    }
  9. }
  10.  
  11.