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.3.0
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-models-api.git

commit 523b43b83381b7f7f696e1112377fc63295f7bbb
Author: Oliver Lietz <o...@apache.org>
AuthorDate: Thu Apr 14 10:28:23 2016 +0000

    fix javadoc
    
    git-svn-id: 
https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/models/api@1739047
 13f79535-47bb-0310-9956-ffa450edef68
---
 .../apache/sling/models/annotations/injectorspecific/ChildResource.java | 2 +-
 .../apache/sling/models/annotations/injectorspecific/OSGiService.java   | 2 +-
 .../sling/models/annotations/injectorspecific/RequestAttribute.java     | 2 +-
 .../apache/sling/models/annotations/injectorspecific/ResourcePath.java  | 2 +-
 .../sling/models/annotations/injectorspecific/ScriptVariable.java       | 2 +-
 .../java/org/apache/sling/models/annotations/injectorspecific/Self.java | 2 +-
 .../apache/sling/models/annotations/injectorspecific/SlingObject.java   | 2 +-
 .../apache/sling/models/annotations/injectorspecific/ValueMapValue.java | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ChildResource.java
 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ChildResource.java
index 14c9cdf..afc38fe 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ChildResource.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ChildResource.java
@@ -47,7 +47,7 @@ public @interface ChildResource {
      * If set to true, the model can be instantiated even if there is no child 
resource
      * with that name available.
      * Default = false.
-     * @deprecated Use {@link injectionStrategy} instead.
+     * @deprecated Use {@link #injectionStrategy} instead.
      */
     @Deprecated
     public boolean optional() default false;
diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/OSGiService.java
 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/OSGiService.java
index 93c2317..f4dc54f 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/OSGiService.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/OSGiService.java
@@ -47,7 +47,7 @@ public @interface OSGiService {
     /**
      * If set to true, the model can be instantiated even if there is no OSGi 
service implementation available. Default
      * = false.
-     * @deprecated Use {@link InjectionStrategy} instead.
+     * @deprecated Use {@link #injectionStrategy} instead.
      */
     @Deprecated
     public boolean optional() default false;
diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/RequestAttribute.java
 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/RequestAttribute.java
index ba3d005..4c45822 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/RequestAttribute.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/RequestAttribute.java
@@ -48,7 +48,7 @@ public @interface RequestAttribute {
      * If set to true, the model can be instantiated even if there is no 
request attribute
      * with the given name found.
      * Default = false.
-     * @deprecated Use {@link InjectionStrategy} instead.
+     * @deprecated Use {@link #injectionStrategy} instead.
      */
     @Deprecated
     public boolean optional() default false;
diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ResourcePath.java
 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ResourcePath.java
index abc5d04..2a4421b 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ResourcePath.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ResourcePath.java
@@ -57,7 +57,7 @@ public @interface ResourcePath {
      * If set to true, the model can be instantiated even if there is no 
request attribute
      * with the given name found.
      * Default = false.
-     * @deprecated Use {@link InjectionStrategy} instead.
+     * @deprecated Use {@link #injectionStrategy} instead.
      */
     @Deprecated
     public boolean optional() default false;
diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ScriptVariable.java
 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ScriptVariable.java
index 0ed5eb0..ae918a6 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ScriptVariable.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ScriptVariable.java
@@ -47,7 +47,7 @@ public @interface ScriptVariable {
      * If set to true, the model can be instantiated even if there is no
      * scripting value with the specified name.
      * Default = false.
-     * @deprecated Use {@link InjectionStrategy} instead.
+     * @deprecated Use {@link #injectionStrategy} instead.
      */
     @Deprecated
     public boolean optional() default false;
diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/Self.java 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/Self.java
index 66aa661..76292e0 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/Self.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/Self.java
@@ -40,7 +40,7 @@ public @interface Self {
     /**
      * If set to true, the model can be instantiated even if there is no 
object that can be adapted from the adaptable itself. 
      * Default = false.
-     * @deprecated Use {@link injectionStrategy} instead
+     * @deprecated Use {@link #injectionStrategy} instead
      */
     @Deprecated
     public boolean optional() default false;
diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/SlingObject.java
 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/SlingObject.java
index e99bb69..22edd5c 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/SlingObject.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/SlingObject.java
@@ -87,7 +87,7 @@ public @interface SlingObject {
      * If set to true, the model can be instantiated even if there is no 
request attribute
      * with the given name found.
      * Default = false.
-     * @deprecated Use {@link injectionStrategy} instead
+     * @deprecated Use {@link #injectionStrategy} instead
      */
     @Deprecated
     boolean optional() default false;
diff --git 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ValueMapValue.java
 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ValueMapValue.java
index e606f7a..b332101 100644
--- 
a/src/main/java/org/apache/sling/models/annotations/injectorspecific/ValueMapValue.java
+++ 
b/src/main/java/org/apache/sling/models/annotations/injectorspecific/ValueMapValue.java
@@ -47,7 +47,7 @@ public @interface ValueMapValue {
      * If set to true, the model can be instantiated even if that value is 
missing.
      * Only considered if default is not set, because any default value 
implicitly
      * sets optional to true
-     * @deprecated Use {@link injectionStrategy} instead
+     * @deprecated Use {@link #injectionStrategy} instead
      */
     @Deprecated
     boolean optional() default false;

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <commits@sling.apache.org>.

Reply via email to