Created
April 28, 2010 02:21
-
-
Save brian428/381649 to your computer and use it in GitHub Desktop.
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
<swiz:Swiz> | |
<swiz:beanProviders> | |
<swiz:BeanProvider> | |
<swiz:Bean name="applicationModel"> | |
<model:ApplicationModel /> | |
</swiz:Bean> | |
<swiz:Bean name="userController"> | |
<control:UserController /> | |
</swiz:Bean> | |
</swiz:BeanProvider> | |
</swiz:beanProviders> | |
<swiz:config> | |
<swiz:SwizConfig | |
eventPackages="com.foo.events, org.bar.events" | |
viewPackages="com.foo.views, org.bar.events" /> | |
</swiz:config> | |
</swiz:Swiz> |
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"?> | |
<swiz:BeanProvider | |
xmlns:swiz="http://swiz.swizframework.org" | |
xmlns:model="com.example.model.*" | |
xmlns:control="com.example.control.*"> | |
<model:ApplicationModel id="applicationModel" /> | |
<control:UserController id="userController" /> | |
</swiz:BeanProvider> |
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"?> | |
<swiz:BeanProvider | |
xmlns:swiz="http://swiz.swizframework.org" | |
xmlns:model="com.example.model.*" | |
xmlns:control="com.example.control.*"> | |
<model:ApplicationModel id="applicationModel" /> | |
<control:UserController id="userController" /> | |
</swiz:BeanProvider> |
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
<swiz:Prototype id="editViewPresoModel" | |
type="{ EditViewPresentationModel }" | |
constructorArguments="{ someOtherBean }" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment