Created
November 4, 2012 20:33
-
-
Save bsideup/4013613 to your computer and use it in GitHub Desktop.
Typical Trylogic Framework bootstrap
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"?> | |
<native:Bootstrap xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:native="http://www.trylogic.ru/native" | |
xmlns:services="ru.trylogic.dummy.services.*" | |
xmlns:trylogic="http://www.trylogic.ru/ioc/"> | |
<fx:Metadata> | |
[SWF(width="1024", height="768", frameRate="60", backgroundColor="0x909090")] | |
</fx:Metadata> | |
<native:services> | |
<services:DummyService someParam="someValue" anotherParam="someAnotherValue" /> | |
</native:services> | |
<native:iocMap> | |
<trylogic:Associate iface="tl.actions.IActionLogger" withClass="ru.trylogic.dummy.core.DummyActionLogger" factory="tl.factory.SingletonFactory" /> | |
</native:iocMap> | |
<native:applicationViewClass>ru.trylogic.dummy.views.dummyApplicationView.DummyApplicationView</native:applicationViewClass> | |
</native:Bootstrap> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment