-
Notifications
You must be signed in to change notification settings - Fork 0
/
jcg.xml
22 lines (18 loc) · 1.09 KB
/
jcg.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010 by Guido Steinacker
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<import resource="jcg-transformers.xml"/>
<import resource="jcg-generator.xml" />
<bean id="parser" class="de.steinacker.jcg.parse.JavaFileParser"/>
<bean id="controller" class="de.steinacker.jcg.JcgController">
<property name="parser" ref="parser"/>
<property name="modelTransformer" ref="modelTransformer" />
<property name="generator" ref="generator"/>
</bean>
</beans>