home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / effects / IEffectTargetHost.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  360 b   |  15 lines

  1. package mx.effects
  2. {
  3.    public interface IEffectTargetHost
  4.    {
  5.       function unconstrainRenderer(param1:Object) : void;
  6.       
  7.       function removeDataEffectItem(param1:Object) : void;
  8.       
  9.       function getRendererSemanticValue(param1:Object, param2:String) : Object;
  10.       
  11.       function addDataEffectItem(param1:Object) : void;
  12.    }
  13. }
  14.  
  15.