Created
July 26, 2011 03:20
-
-
Save shi11/1105883 to your computer and use it in GitHub Desktop.
mapping view interfaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//in context | |
mediatorMap.mapView( MyView1, MyMediator, IView); | |
mediatorMap.mapView( MyView2, MyMediator, IView); | |
//in MyMediator | |
[Inject] | |
public var IView; | |
override public function onRegister() : void { | |
view.mySignal.add( handleSignal ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment