diff --git a/src/main/java/space/kklochko/simple_jbdd/annotations/Title.java b/src/main/java/space/kklochko/simple_jbdd/annotations/Title.java new file mode 100644 index 0000000..ed23f03 --- /dev/null +++ b/src/main/java/space/kklochko/simple_jbdd/annotations/Title.java @@ -0,0 +1,13 @@ +package space.kklochko.simple_jbdd.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.TYPE) +public @interface Title { + String value() default "Title"; +} +