samples/componentinjection/anagram-modular/src-app-spring/org/apidesign/anagram/app/spring/conf.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:08:18 +0200
changeset 246 128db998ee1c
parent 245 ce3b323add40
permissions -rw-r--r--
Merge: Work done on the spring and lookup is not in trunk
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!-- BEGIN: anagram.spring.xml -->
     3 <beans xmlns="http://www.springframework.org/schema/beans"
     4        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     5        xsi:schemaLocation="http://www.springframework.org/schema/beans 
     6        http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
     7 >
     8 
     9     <bean 
    10         id="wordLibrary" 
    11         class="org.apidesign.anagram.wordstatic.StaticWordLibrary"
    12     />
    13     <bean 
    14         id="scrambler" 
    15         class="org.apidesign.anagram.scramblersimple.SimpleScrambler"
    16     />
    17     <bean 
    18         id="ui" 
    19         class="org.apidesign.anagram.gui.AnagramsWithConstructor" 
    20         autowire="autodetect"
    21     />
    22 </beans>
    23 <!-- END: anagram.spring.xml -->
    24