BAEL-2100 Custom Lombok Annotation (#5918)

This commit is contained in:
dev-chirag
2018-12-17 01:20:17 +05:30
committed by maibin
parent bd32693a46
commit ad03c69e01
5 changed files with 304 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
package com.baeldung.singleton;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
public @interface Singleton {
}