This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.models.api-1.2.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-models-api.git
commit bc02ffdb0011b20d88187bd267ecf7bf86a8343c Author: Stefan Seifert <[email protected]> AuthorDate: Wed Oct 15 13:00:00 2014 +0000 SLING-4055 "Model" annotation should be @Documented git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/models/api@1632005 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/sling/models/annotations/Model.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/org/apache/sling/models/annotations/Model.java b/src/main/java/org/apache/sling/models/annotations/Model.java index 6b5616e..b532dc9 100644 --- a/src/main/java/org/apache/sling/models/annotations/Model.java +++ b/src/main/java/org/apache/sling/models/annotations/Model.java @@ -16,6 +16,7 @@ */ package org.apache.sling.models.annotations; +import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @@ -26,6 +27,7 @@ import java.lang.annotation.Target; */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) +@Documented public @interface Model { /** -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
