aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher2.java
blob: db6b50ae8ef0c359a992717e35f6d38be71e7d53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.test;


/**
 * Test class for integration tests. Used to verify that nested classes are visited.
 *
 * Do not replace the fully qualified class names with imports!
 */
public class SimpleSearcher2 extends SimpleSearcher {
    public void dummy() {}

    private class InnerClassProcessor extends com.yahoo.processing.Processor {
        @Override
        public com.yahoo.processing.Response process(com.yahoo.processing.Request request,
                                                     com.yahoo.processing.execution.Execution execution) {
            return null;
        }
    }

    private static class NestedStaticClass {
        private com.yahoo.metrics.simple.Counter counter;

        @com.google.inject.Inject
        public NestedStaticClass() { }
    }

}