Sha256: 4a2baf11aad3eacaf5e00faba589acfe97035d024592eb7e4f35f2b8d9033264
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
package com.fourD.core { import com.asfusion.mate.core.IEventMap; import flash.display.DisplayObjectContainer; import flash.events.Event; /** * <code>MessageScope</code> is an object created by the <code>MessageHandlers</code>. * <p>It represents the running scope of a <code>IActionList</code>. * The <code>IActionList</code> and its actions share this object to transfer data * between them.</p> */ public class TectonScope extends Scope { public var tecton:Tecton; public var tropon:DisplayObjectContainer; public var kanon:DisplayObjectContainer; public var action:String; public var presenter:*; /*----------------------------------------------------------------------------------------------------------- * Constructor -------------------------------------------------------------------------------------------------------------*/ /** * Constructor */ public function TectonScope(event:Event, active:Boolean, map:IEventMap, inheritScope:IScope = null) { super(event, active, map, inheritScope); } } }
Version data entries
3 entries across 3 versions & 1 rubygems