aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/UtilityClass.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/UtilityClass.java')
-rw-r--r--test/transform/resource/after-ecj/UtilityClass.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/UtilityClass.java b/test/transform/resource/after-ecj/UtilityClass.java
new file mode 100644
index 00000000..656c0184
--- /dev/null
+++ b/test/transform/resource/after-ecj/UtilityClass.java
@@ -0,0 +1,66 @@
+final @lombok.experimental.UtilityClass class UtilityClass {
+ protected static class InnerClass {
+ private String innerInnerMember;
+ protected InnerClass() {
+ super();
+ }
+ }
+ private static long someField = System.currentTimeMillis();
+ <clinit>() {
+ }
+ static void someMethod() {
+ System.out.println();
+ }
+ private @java.lang.SuppressWarnings("all") UtilityClass() {
+ super();
+ throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
+ }
+}
+class UtilityInner {
+ static class InnerInner {
+ static final @lombok.experimental.UtilityClass class InnerInnerInner {
+ static int member;
+ <clinit>() {
+ }
+ private @java.lang.SuppressWarnings("all") InnerInnerInner() {
+ super();
+ throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
+ }
+ }
+ InnerInner() {
+ super();
+ }
+ }
+ enum UtilityInsideEnum {
+ static final @lombok.experimental.UtilityClass class InsideEnum {
+ static int member;
+ <clinit>() {
+ }
+ private @java.lang.SuppressWarnings("all") InsideEnum() {
+ super();
+ throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
+ }
+ }
+ FOO(),
+ BAR(),
+ <clinit>() {
+ }
+ UtilityInsideEnum() {
+ super();
+ }
+ }
+ interface UtilityInsideInterface {
+ final @lombok.experimental.UtilityClass class InsideInterface {
+ static int member;
+ <clinit>() {
+ }
+ private @java.lang.SuppressWarnings("all") InsideInterface() {
+ super();
+ throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
+ }
+ }
+ }
+ UtilityInner() {
+ super();
+ }
+} \ No newline at end of file