home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 164 / MOBICLIC164.ISO / mac / index.swf / scripts / com / milanpresse / capsule / StandardCapsule.as < prev   
Text File  |  2014-05-13  |  1KB  |  54 lines

  1. package com.milanpresse.capsule
  2. {
  3.    import com.milanpresse.engine.HostContainer;
  4.    
  5.    public class StandardCapsule implements ICapsule
  6.    {
  7.        
  8.       
  9.       private var _config:ICapsuleConfig = null;
  10.       
  11.       protected var _host:HostContainer;
  12.       
  13.       public function StandardCapsule()
  14.       {
  15.          super();
  16.       }
  17.       
  18.       public function get host() : *
  19.       {
  20.          return this._host;
  21.       }
  22.       
  23.       public function get config() : ICapsuleConfig
  24.       {
  25.          return this._config;
  26.       }
  27.       
  28.       public function set config(param1:ICapsuleConfig) : void
  29.       {
  30.          this._config = param1;
  31.       }
  32.       
  33.       public function init(param1:Object = null) : void
  34.       {
  35.       }
  36.       
  37.       public function start(param1:Object = null) : void
  38.       {
  39.       }
  40.       
  41.       public function destroy() : void
  42.       {
  43.       }
  44.       
  45.       public function sleep() : void
  46.       {
  47.       }
  48.       
  49.       public function wake() : void
  50.       {
  51.       }
  52.    }
  53. }
  54.