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:36 UTC

[tapestry-5] branch java9modules updated (8ca50f5 -> 340dff7)

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

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


    from 8ca50f5  TAP5-2641: fixing JavaDoc errors
     new cbb71c5  TAP5-2641: fixing JavaDoc errors
     new 340dff7  TAP5-2641: fixing JavaDoc errors

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/tapestry5/beanmodel/services/PropertyConduitSource.java  | 2 +-
 .../apache/tapestry5/commons/internal/services/StringInterner.java  | 2 +-
 .../java/org/apache/tapestry5/commons/services/CoercionTuple.java   | 2 +-
 .../org/apache/tapestry5/commons/services/DataTypeAnalyzer.java     | 2 +-
 .../org/apache/tapestry5/commons/services/InvalidationEventHub.java | 2 +-
 .../java/org/apache/tapestry5/commons/services/PropertyAdapter.java | 4 ++--
 .../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 ++--
 .../src/main/java/org/apache/tapestry5/ioc/annotations/Inject.java  | 2 +-
 10 files changed, 14 insertions(+), 13 deletions(-)


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

Posted by th...@apache.org.
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 340dff75b682a59b14a00fe72110db78767394f6
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sat Sep 12 19:38:22 2020 -0300

    TAP5-2641: fixing JavaDoc errors
---
 .../apache/tapestry5/commons/internal/services/StringInterner.java  | 2 +-
 .../java/org/apache/tapestry5/commons/services/CoercionTuple.java   | 2 +-
 .../org/apache/tapestry5/commons/services/DataTypeAnalyzer.java     | 2 +-
 .../org/apache/tapestry5/commons/services/InvalidationEventHub.java | 2 +-
 .../java/org/apache/tapestry5/commons/services/PropertyAdapter.java | 2 +-
 .../java/org/apache/tapestry5/ioc/internal/ConfigurationType.java   | 6 +++---
 .../src/main/java/org/apache/tapestry5/ioc/annotations/Inject.java  | 2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/commons/src/main/java/org/apache/tapestry5/commons/internal/services/StringInterner.java b/commons/src/main/java/org/apache/tapestry5/commons/internal/services/StringInterner.java
index eb4db44..c592583 100644
--- a/commons/src/main/java/org/apache/tapestry5/commons/internal/services/StringInterner.java
+++ b/commons/src/main/java/org/apache/tapestry5/commons/internal/services/StringInterner.java
@@ -17,7 +17,7 @@ package org.apache.tapestry5.commons.internal.services;
 /**
  * Creates "interned" strings that are unique for the same content. This is used for common description strings,
  * particularly those used by {@link org.apache.tapestry5.Binding} instances.  The internal cache of interned strings id
- * cleared whenever the {@link org.apache.tapestry5.annotations.ComponentClasses} 
+ * cleared whenever the {@link org.apache.tapestry5.ioc.annotations.ComponentClasses} 
  * <a href="https://tapestry.apache.org/current/apidocs/org/apache/tapestry5/services/InvalidationEventHub.html">InvalidationEventHub</a> is invalidated (i.e., when component class files change).
  *
  * @since 5.1.0.0
diff --git a/commons/src/main/java/org/apache/tapestry5/commons/services/CoercionTuple.java b/commons/src/main/java/org/apache/tapestry5/commons/services/CoercionTuple.java
index 144306b..c315dfe 100644
--- a/commons/src/main/java/org/apache/tapestry5/commons/services/CoercionTuple.java
+++ b/commons/src/main/java/org/apache/tapestry5/commons/services/CoercionTuple.java
@@ -18,7 +18,7 @@ import org.apache.tapestry5.plastic.PlasticUtils;
 
 /**
  * An immutable object that represents a mapping from one type to another. This is also the contribution type when
- * building the {@link org.apache.tapestry5.comons.services.TypeCoercer} service. Wraps a
+ * building the {@link org.apache.tapestry5.commons.services.TypeCoercer} service. Wraps a
  * {@link org.apache.tapestry5.commons.services.Coercion} object that performs the work with additional properties that
  * describe
  * the input and output types of the coercion, needed when searching for an appropriate coercion (or sequence of
diff --git a/commons/src/main/java/org/apache/tapestry5/commons/services/DataTypeAnalyzer.java b/commons/src/main/java/org/apache/tapestry5/commons/services/DataTypeAnalyzer.java
index d5863be..7ccb99f 100644
--- a/commons/src/main/java/org/apache/tapestry5/commons/services/DataTypeAnalyzer.java
+++ b/commons/src/main/java/org/apache/tapestry5/commons/services/DataTypeAnalyzer.java
@@ -32,7 +32,7 @@ import org.apache.tapestry5.ioc.annotations.UsesOrderedConfiguration;
  *
  * @see org.apache.tapestry5.corelib.components.Grid
  * @see org.apache.tapestry5.corelib.components.BeanEditForm
- * @see org.apache.tapestry5.BeanBlockSource
+ * @see org.apache.tapestry5.services.BeanBlockSource
  */
 @UsesOrderedConfiguration(DataTypeAnalyzer.class)
 @UsesMappedConfiguration(key = Class.class, value = String.class)
diff --git a/commons/src/main/java/org/apache/tapestry5/commons/services/InvalidationEventHub.java b/commons/src/main/java/org/apache/tapestry5/commons/services/InvalidationEventHub.java
index 077cc5a..d583172 100644
--- a/commons/src/main/java/org/apache/tapestry5/commons/services/InvalidationEventHub.java
+++ b/commons/src/main/java/org/apache/tapestry5/commons/services/InvalidationEventHub.java
@@ -15,7 +15,7 @@ package org.apache.tapestry5.commons.services;
 import java.util.Map;
 
 /**
- * An object which manages a list of {@link org.apache.tapestry5.services.InvalidationListener}s. There are multiple
+ * An object which manages a list of {@link org.apache.tapestry5.commons.services.InvalidationListener}s. There are multiple
  * event hub services implementing this interface, each with a specific marker annotation; each can register listeners
  * and fire events; these are based on the type of resource that has been invalidated. Tapestry has built-in support
  * for:
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 8905d06..8c3c861 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
@@ -24,7 +24,7 @@ import org.apache.tapestry5.commons.AnnotationProvider;
  *
  * Starting in release 5.2, this property may actually be a public field. In 5.3, it may be a public static field.
  *
- * @see org.apache.tapestry5.ioc.services.ClassPropertyAdapter
+ * @see org.apache.tapestry5.commons.services.ClassPropertyAdapter
  */
 public interface PropertyAdapter extends AnnotationProvider
 {
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 deaf16f..be90c45 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.commons.Configuration
+     * @see <a href="https://tapestry.apache.org/current/apidocs/org/apache/tapestry5/commons/Configuration.html">Configuration</a>
      */
     UNORDERED,
     /**
-     * @see org.apache.tapestry5.commons.OrderedConfiguration
+     * @see <a href="https://tapestry.apache.org/current/apidocs/org/apache/tapestry5/commons/OrderedConfiguration.html">OrderedConfiguration</a>
      */
     ORDERED,
     /**
-     * @see org.apache.tapestry5.commons.MappedConfiguration
+     * @see <a href="https://tapestry.apache.org/current/apidocs/org/apache/tapestry5/commons/MappedConfiguration.html">MappedConfiguration</a>     
      */
     MAPPED
 }
diff --git a/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Inject.java b/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Inject.java
index 603cc23..bce329b 100644
--- a/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Inject.java
+++ b/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Inject.java
@@ -45,7 +45,7 @@ import static org.apache.tapestry5.ioc.annotations.AnnotationUseContext.*;
  * Finally, on a constructor, this is used to indicate <em>which</em> constructor should be used when more than one is
  * available.
  * 
- * @see org.apache.tapestry5.ioc.ObjectProvider
+ * @see org.apache.tapestry5.commons.ObjectProvider
  */
 @Target(
 { PARAMETER, FIELD, CONSTRUCTOR })


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

Posted by th...@apache.org.
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
 }