blob: 36d9a5493fb1dfbe6333e296234962234f4e4dcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="deployer" class="net.sourceforge.subsonic.booter.deployer.SubsonicDeployer"/>
<bean id="frame" class="net.sourceforge.subsonic.booter.mac.SubsonicFrame">
<constructor-arg ref="deployer"/>
</bean>
<bean id="controller" class="net.sourceforge.subsonic.booter.mac.SubsonicController">
<constructor-arg ref="deployer"/>
<constructor-arg ref="frame"/>
</bean>
</beans>
|