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
| package org.robotlegs.examples.imagegallery | |
| { | |
| // imports removed for brevity | |
| public class ImageGalleryContext extends SignalContext | |
| { | |
| private const VIEW_PACKAGE:String = "org.robotlegs.examples.imagegallery.view.components"; | |
| private const LOAD_GALLERY:String = "loadGallery"; | |
| private var appStarted:ApplicationStartedSignal; | |
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
| package org.robotlegs.examples.imagegallery | |
| { | |
| // imports removed for brevity | |
| public class ImageGalleryContext extends SignalContext | |
| { | |
| private const VIEW_PACKAGE:String = "org.robotlegs.examples.imagegallery.view.components"; | |
| private const LOAD_GALLERY:String = "loadGallery"; | |
| private var appStarted:ApplicationStartedSignal; | |
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
| package | |
| { | |
| // imports removed for brevity | |
| public class ImageGallerySwizAS | |
| { | |
| protected var swiz:Swiz; | |
| protected var config:SwizConfig; | |
| protected var beanProviders:Array; | |
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
| package processors | |
| { | |
| import flight.binding.Bind; | |
| import flight.binding.Binding; | |
| import org.swizframework.core.Bean; | |
| import org.swizframework.processors.BaseMetadataProcessor; | |
| import org.swizframework.reflection.IMetadataTag; | |
| import org.swizframework.reflection.MetadataArg; |
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
| package | |
| { | |
| public namespace injection_namespace = "http://ns.swizframework.org/injection_namespace"; | |
| } |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <s:VGroup xmlns:fx="http://ns.adobe.com/mxml/2009" | |
| xmlns:s="library://ns.adobe.com/flex/spark" | |
| xmlns:mx="library://ns.adobe.com/flex/mx"> | |
| <fx:Script> | |
| <![CDATA[ | |
| import models.Model; | |
| import models.OtherModel; | |
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
| package | |
| { | |
| import org.swizframework.core.Bean; | |
| import org.swizframework.metadata.InjectMetadataTag; | |
| import org.swizframework.processors.IMetadataProcessor; | |
| import org.swizframework.processors.InjectProcessor; | |
| import org.swizframework.reflection.MetadataHostMethod; | |
| public class InjectNSProcessor extends InjectProcessor implements IMetadataProcessor | |
| { |
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
| [PostConstruct] | |
| public function afterInjections():void | |
| { | |
| addListenersAndStuff(); | |
| } |
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
| package org.swizframework.extensions.commands | |
| { | |
| import flash.events.Event; | |
| import flash.utils.Dictionary; | |
| import org.swizframework.core.Bean; | |
| import org.swizframework.core.ISwiz; | |
| import org.swizframework.core.ISwizAware; | |
| import org.swizframework.core.Prototype; |
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
| protected var _foo:String; | |
| [Bindable( "fooChanged" )] | |
| public function get foo():String | |
| { | |
| return _foo; | |
| } | |
| public function setFoo( foo:String ):void | |
| { |
OlderNewer