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/10/18 21:11:07 UTC

[tapestry-5] branch java9modules updated: 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


The following commit(s) were added to refs/heads/java9modules by this push:
     new 5f1f134  TAP5-2641: fixing JavaDoc errors.
5f1f134 is described below

commit 5f1f1346e85156e2b27d62bca79321ce4b019932
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sun Oct 18 18:10:38 2020 -0300

    TAP5-2641: fixing JavaDoc errors.
---
 .../src/main/java/org/apache/tapestry5/SymbolConstants.java       | 8 ++++----
 tapestry-http/src/main/java/org/apache/tapestry5/http/Link.java   | 2 +-
 .../org/apache/tapestry5/http/TapestryHttpSymbolConstants.java    | 6 +++---
 .../apache/tapestry5/http/internal/TapestryAppInitializer.java    | 2 +-
 .../org/apache/tapestry5/http/modules/TapestryHttpModule.java     | 2 +-
 .../apache/tapestry5/internal/webresources}/CssCompressor.java    | 0
 6 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java b/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
index 4cb1f40..ad71507 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/SymbolConstants.java
@@ -40,7 +40,7 @@ public class SymbolConstants
      * Each modes can contribute a list (comma separated) of Module classes to be loaded during startup,
      * the order in which they appear is preserved.
      * The default value is: <code>production</code>.
-     * This is an alias for {@link TapestryHttpSymbolConstants.EXECUTION_MODE}.
+     * This is an alias for {@link TapestryHttpSymbolConstants#EXECUTION_MODE}.
      */
     public static final String EXECUTION_MODE = TapestryHttpSymbolConstants.EXECUTION_MODE;
     /**
@@ -293,7 +293,7 @@ public class SymbolConstants
      * The secure (https) hostport that application should use when constructing an absolute URL. The default is "0",
      * i.e. use
      * the value from the request.
-     * This is an alias to {@link TapestryHttpSymbolConstnats#HOSTPORT_SECURE}.
+     * This is an alias to {@link TapestryHttpSymbolConstants#HOSTPORT_SECURE}.
      *
      * @since 5.3
      */
@@ -321,7 +321,7 @@ public class SymbolConstants
      * The default is {@code true}, to preserve 5.2 behavior. For non-clustered applications (the majority), this value should be
      * overridden to {@code false}. A future release of Tapestry may change the default.
      * 
-     * This is an alias to {@link TapestryHttpSymbolConstants.CLUSTERED_SESSIONS}.
+     * This is an alias to {@link TapestryHttpSymbolConstants#CLUSTERED_SESSIONS}.
      *
      * @since 5.3
      */
@@ -379,7 +379,7 @@ public class SymbolConstants
     /**
      * Identifies the context path of the application, as determined from {@link javax.servlet.ServletContext#getContextPath()}.
      * This is either a blank string or a string that starts with a slash but does not end with one.
-     * This is an alias to {@link TapestryHttpSymbolConstants.CONTEXT_PATH}.
+     * This is an alias to {@link TapestryHttpSymbolConstants#CONTEXT_PATH}.
      *
      * @since 5.4
      */
diff --git a/tapestry-http/src/main/java/org/apache/tapestry5/http/Link.java b/tapestry-http/src/main/java/org/apache/tapestry5/http/Link.java
index 81c15f9..c572e50 100644
--- a/tapestry-http/src/main/java/org/apache/tapestry5/http/Link.java
+++ b/tapestry-http/src/main/java/org/apache/tapestry5/http/Link.java
@@ -67,7 +67,7 @@ public interface Link
 
     /**
      * Adds a parameter value as a value object; the value object is converted to a string via
-     * <a href="http://tapestry.apache.org/current/apidocs/src-html/org/apache/tapestry5/services/ContextPathEncoder.html#line.31>ContextPathEncoder.encodeValue(Object)</a>
+     * <a href="http://tapestry.apache.org/current/apidocs/src-html/org/apache/tapestry5/services/ContextPathEncoder.html#line.31">ContextPathEncoder.encodeValue(Object)</a>
      * from tapestry-core and the result is added via {@link #addParameter(String, String)}.
      * The Link object is returned for further configuration.
      *
diff --git a/tapestry-http/src/main/java/org/apache/tapestry5/http/TapestryHttpSymbolConstants.java b/tapestry-http/src/main/java/org/apache/tapestry5/http/TapestryHttpSymbolConstants.java
index 79aa2c5..e5b12db 100644
--- a/tapestry-http/src/main/java/org/apache/tapestry5/http/TapestryHttpSymbolConstants.java
+++ b/tapestry-http/src/main/java/org/apache/tapestry5/http/TapestryHttpSymbolConstants.java
@@ -126,9 +126,9 @@ final public class TapestryHttpSymbolConstants {
      * using a server that handles GZip compression for you, or you don't want to use the extra processing power
      * necessary to GZIP requests, then override this to "false".
      *
-     * @see MIN_GZIP_SIZE
-     * @see org.apache.tapestry5.services.ResponseCompressionAnalyzer
-     * @see org.apache.tapestry5.services.assets.CompressionAnalyzer
+     * @see #MIN_GZIP_SIZE
+     * @see org.apache.tapestry5.http.services.ResponseCompressionAnalyzer
+     * @see org.apache.tapestry5.http.services.CompressionAnalyzer
      * @since 5.1.0.0
      */
     public static final String GZIP_COMPRESSION_ENABLED = "tapestry.gzip-compression-enabled";
diff --git a/tapestry-http/src/main/java/org/apache/tapestry5/http/internal/TapestryAppInitializer.java b/tapestry-http/src/main/java/org/apache/tapestry5/http/internal/TapestryAppInitializer.java
index 14fb4f3..d92a01d 100644
--- a/tapestry-http/src/main/java/org/apache/tapestry5/http/internal/TapestryAppInitializer.java
+++ b/tapestry-http/src/main/java/org/apache/tapestry5/http/internal/TapestryAppInitializer.java
@@ -77,7 +77,7 @@ public class TapestryAppInitializer
      *         logger for output confirmation
      * @param appProvider
      *         provides symbols for the application (normally, from the ServletContext init
-     *         parameters), plus (as of 5.4) the value for symbol {@link SymbolConstants#CONTEXT_PATH}
+     *         parameters), plus (as of 5.4) the value for symbol {@link TapestryHttpSymbolConstants#CONTEXT_PATH}
      * @param appName
      *         the name of the application (i.e., the name of the application servlet)
      * @param executionModes
diff --git a/tapestry-http/src/main/java/org/apache/tapestry5/http/modules/TapestryHttpModule.java b/tapestry-http/src/main/java/org/apache/tapestry5/http/modules/TapestryHttpModule.java
index 794530a..42d054c 100644
--- a/tapestry-http/src/main/java/org/apache/tapestry5/http/modules/TapestryHttpModule.java
+++ b/tapestry-http/src/main/java/org/apache/tapestry5/http/modules/TapestryHttpModule.java
@@ -204,7 +204,7 @@ public final class TapestryHttpModule {
     }
 
     /**
-     * Initializes the application, using a pipeline of {@link org.apache.tapestry5.services.ApplicationInitializer}s.
+     * Initializes the application, using a pipeline of {@link org.apache.tapestry5.http.services.ApplicationInitializer}s.
      */
     @Marker(Primary.class)
     public ApplicationInitializer buildApplicationInitializer(Logger logger,
diff --git a/tapestry-webresources/src/main/java/com/yahoo/platform/yui/compressor/CssCompressor.java b/tapestry-webresources/src/main/java/org/apache/tapestry5/internal/webresources/CssCompressor.java
similarity index 100%
rename from tapestry-webresources/src/main/java/com/yahoo/platform/yui/compressor/CssCompressor.java
rename to tapestry-webresources/src/main/java/org/apache/tapestry5/internal/webresources/CssCompressor.java