You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2020/09/12 22:38:37 UTC

[tapestry-5] 01/02: TAP5-2641: fixing JavaDoc errors

This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch java9modules
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git

commit cbb71c59146c7a2b35f6fe5e1aa8b150de0575b7
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sat Sep 12 19:07:00 2020 -0300

    TAP5-2641: fixing JavaDoc errors
---
 .../apache/tapestry5/beanmodel/services/PropertyConduitSource.java  | 2 +-
 .../java/org/apache/tapestry5/commons/services/PropertyAdapter.java | 2 +-
 .../src/main/java/org/apache/tapestry5/ajax/MultiZoneUpdate.java    | 1 +
 .../java/org/apache/tapestry5/ioc/internal/ConfigurationType.java   | 6 +++---
 .../main/java/org/apache/tapestry5/beaneditor/RelativePosition.java | 4 ++--
 5 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/beanmodel/src/main/java/org/apache/tapestry5/beanmodel/services/PropertyConduitSource.java b/beanmodel/src/main/java/org/apache/tapestry5/beanmodel/services/PropertyConduitSource.java
index 2c490a2..9dd6668 100644
--- a/beanmodel/src/main/java/org/apache/tapestry5/beanmodel/services/PropertyConduitSource.java
+++ b/beanmodel/src/main/java/org/apache/tapestry5/beanmodel/services/PropertyConduitSource.java
@@ -27,7 +27,7 @@ public interface PropertyConduitSource
      * a change to component classes is observed.
      *
      * Callers of this method should observe notifications from the {@link org.apache.tapestry5.commons.services.InvalidationEventHub}
-     * for {@link org.apache.tapestry5.annotations.ComponentClasses} and discard any aquired conduits; failure to do so
+     * for {@link org.apache.tapestry5.ioc.annotations.ComponentClasses} and discard any aquired conduits; failure to do so
      * will create memory leaks whenever component classes change (the conduits will keep references to the old classes
      * and classloaders).
      *
diff --git a/commons/src/main/java/org/apache/tapestry5/commons/services/PropertyAdapter.java b/commons/src/main/java/org/apache/tapestry5/commons/services/PropertyAdapter.java
index e8b79ee..8905d06 100644
--- a/commons/src/main/java/org/apache/tapestry5/commons/services/PropertyAdapter.java
+++ b/commons/src/main/java/org/apache/tapestry5/commons/services/PropertyAdapter.java
@@ -91,7 +91,7 @@ public interface PropertyAdapter extends AnnotationProvider
 
     /**
      * Returns the type of bean to which this property belongs. This is the same as
-     * {@link org.apache.tapestry5.ioc.services.ClassPropertyAdapter#getBeanType()}.
+     * {@link org.apache.tapestry5.commons.services.ClassPropertyAdapter#getBeanType()}.
      */
     Class getBeanType();
 
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/ajax/MultiZoneUpdate.java b/tapestry-core/src/main/java/org/apache/tapestry5/ajax/MultiZoneUpdate.java
index 93c603a..11fad36 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/ajax/MultiZoneUpdate.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/ajax/MultiZoneUpdate.java
@@ -48,6 +48,7 @@ public class MultiZoneUpdate
     /**
      * Alternate constructor that takes a ClientBodyElement (typically, a
      * {@link org.apache.tapestry5.corelib.components.Zone}).
+     * @
      */
     public MultiZoneUpdate(ClientBodyElement zone)
     {
diff --git a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/ConfigurationType.java b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/ConfigurationType.java
index 39b850f..deaf16f 100644
--- a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/ConfigurationType.java
+++ b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/ConfigurationType.java
@@ -21,15 +21,15 @@ public enum ConfigurationType
 {
 
     /**
-     * @see org.apache.tapestry5.ioc.Configuration
+     * @see org.apache.tapestry5.commons.Configuration
      */
     UNORDERED,
     /**
-     * @see org.apache.tapestry5.ioc.OrderedConfiguration
+     * @see org.apache.tapestry5.commons.OrderedConfiguration
      */
     ORDERED,
     /**
-     * @see org.apache.tapestry5.ioc.MappedConfiguration
+     * @see org.apache.tapestry5.commons.MappedConfiguration
      */
     MAPPED
 }
diff --git a/tapestry5-annotations/src/main/java/org/apache/tapestry5/beaneditor/RelativePosition.java b/tapestry5-annotations/src/main/java/org/apache/tapestry5/beaneditor/RelativePosition.java
index 97942c0..9237823 100644
--- a/tapestry5-annotations/src/main/java/org/apache/tapestry5/beaneditor/RelativePosition.java
+++ b/tapestry5-annotations/src/main/java/org/apache/tapestry5/beaneditor/RelativePosition.java
@@ -21,12 +21,12 @@ package org.apache.tapestry5.beaneditor;
 public enum RelativePosition
 {
     /**
-     * The new {@link PropertyModel} goes before the existing model.
+     * The new <a href="https://tapestry.apache.org/current/apidocs/org/apache/tapestry5/beanmodel/PropertyModel.html">PropertyModel</a> goes before the existing model.
      */
     BEFORE,
 
     /**
-     * The new {@link PropertyModel} goes after the existing model.
+     * The new <a href="https://tapestry.apache.org/current/apidocs/org/apache/tapestry5/beanmodel/PropertyModel.html">PropertyModel</a> goes after the existing model.
      */
     AFTER
 }