1 package com.atlassian.plugin.spring.scanner.test;
2
3 import org.springframework.stereotype.Component;
4
5 /**
6 * This tests that fact that we can handle OuterClass$InnerClass$InnerComponent properly
7 */
8 @SuppressWarnings("UnusedDeclaration")
9 public class OuterClass {
10 @Component
11 public static class OuterComponent {
12
13 }
14
15 public static class InnerClass {
16
17 @Component
18 public static class InnerComponent {
19
20 @Component
21 public static class EvenMoreInnerComponent {
22
23 }
24
25 }
26 }
27 }