samples/componentinjection/anagram-modular/src-app-spring-scan/org/apidesign/anagram/app/springscan/SimpleScramblerAnnotated.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
     1 package org.apidesign.anagram.app.springscan;
     2 
     3 import org.apidesign.anagram.scramblersimple.SimpleScrambler;
     4 import org.springframework.stereotype.Service;
     5 
     6 /* This class shall be in its own module, not here, but because of the need
     7  * to see the @Service annotation, I've put it here. The right solution would
     8  * be to add dependency of the module providing super class on spring and
     9  * use the annotation directly there.
    10  */
    11 
    12 
    13 @Service
    14 public class SimpleScramblerAnnotated extends SimpleScrambler {
    15 }