summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2019-10-23 12:11:12 +0200
committerGitHub <noreply@github.com>2019-10-23 12:11:12 +0200
commitd9f4351623e616f8df85e73b45f9e42bd221fb6f (patch)
treea0053a7e0af5515386b3b75f0bb521d9a096a34e /bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
parentdfec83cec5f464b09b72fc48ff1a5e114523aded (diff)
Revert "Gjoranv/artifact version for exports3"
Diffstat (limited to 'bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java')
-rw-r--r--bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java b/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
new file mode 100644
index 00000000000..3220171de13
--- /dev/null
+++ b/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
@@ -0,0 +1,28 @@
+// Copyright 2017 Yahoo Holdings. 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() { }
+ }
+
+}