From a5fac85d9a9dd5d3df4282dc7626e87952b900c4 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Fri, 18 Dec 2020 12:23:21 +0100 Subject: [PATCH] Annotated ISProperty annotation so that is included in the Javadoc --- .../gcube/informationsystem/types/annotations/ISProperty.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/org/gcube/informationsystem/types/annotations/ISProperty.java b/src/main/java/org/gcube/informationsystem/types/annotations/ISProperty.java index 2712651..30deada 100644 --- a/src/main/java/org/gcube/informationsystem/types/annotations/ISProperty.java +++ b/src/main/java/org/gcube/informationsystem/types/annotations/ISProperty.java @@ -1,5 +1,6 @@ package org.gcube.informationsystem.types.annotations; +import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @@ -16,6 +17,7 @@ import org.gcube.informationsystem.types.reference.properties.PropertyDefinition * The name of the property is obtained by removing "get" or "is" from method * name and lower casing the first letter. */ +@Documented @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface ISProperty {