home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 170 / MOBICLIC170.ISO / pc / index.swf / scripts / com / milanpresse / capsule / ICapsule.as < prev    next >
Text File  |  2014-12-16  |  491b  |  24 lines

  1. package com.milanpresse.capsule
  2. {
  3.    public interface ICapsule
  4.    {
  5.        
  6.       
  7.       function get config() : ICapsuleConfig;
  8.       
  9.       function set config(param1:ICapsuleConfig) : void;
  10.       
  11.       function get host() : *;
  12.       
  13.       function init(param1:Object = null) : void;
  14.       
  15.       function start(param1:Object = null) : void;
  16.       
  17.       function destroy() : void;
  18.       
  19.       function sleep() : void;
  20.       
  21.       function wake() : void;
  22.    }
  23. }
  24.