samples/componentinjection/anagram-modular/src-app-spring-scan/org/apidesign/anagram/app/springscan/StaticWordLibraryAnnotated.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:08:14 +0200
changeset 245 ce3b323add40
parent 237 a84441ff1f73
child 246 128db998ee1c
permissions -rw-r--r--
Merge: Scanner does not really need to override any visitXYZ methods that do default traversal
jtulach@230
     1
package org.apidesign.anagram.app.springscan;
jtulach@230
     2
jtulach@230
     3
import org.apidesign.anagram.wordstatic.StaticWordLibrary;
jtulach@230
     4
import org.springframework.stereotype.Service;
jtulach@230
     5
jtulach@230
     6
/* This class shall be in its own module, not here, but because of the need
jtulach@230
     7
 * to see the @Service annotation, I've put it here. The right solution would
jtulach@230
     8
 * be to add dependency of the module providing super class on spring and
jtulach@230
     9
 * use the annotation directly there.
jtulach@230
    10
 */
jtulach@230
    11
jtulach@230
    12
jtulach@230
    13
@Service
jtulach@230
    14
public class StaticWordLibraryAnnotated extends StaticWordLibrary {
jtulach@230
    15
}