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

  1. package mx.core
  2. {
  3.    public interface IEmbeddedFontRegistry
  4.    {
  5.       function getAssociatedModuleFactory(param1:EmbeddedFont, param2:IFlexModuleFactory) : IFlexModuleFactory;
  6.       
  7.       function registerFont(param1:EmbeddedFont, param2:IFlexModuleFactory) : void;
  8.       
  9.       function deregisterFont(param1:EmbeddedFont, param2:IFlexModuleFactory) : void;
  10.       
  11.       function getFonts() : Array;
  12.    }
  13. }
  14.  
  15.