This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jelly.git
The following commit(s) were added to refs/heads/master by this push: new 17fc82b9 Javadoc 17fc82b9 is described below commit 17fc82b951cdf9cbda6d508d93a9bb51921fa783 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jan 17 10:36:37 2024 -0500 Javadoc --- .../src/main/java/org/apache/commons/jelly/JellyContext.java | 4 ++-- .../apache/commons/jelly/impl/DefaultTagLibraryResolver.java | 4 ++-- .../apache/commons/jelly/tags/core/BaseClassLoaderTag.java | 4 ++-- .../java/org/apache/commons/jelly/util/ClassLoaderUtils.java | 4 ++-- .../org/apache/commons/jelly/tags/bean/MyTagLibrary.java | 2 +- .../test/java/org/apache/commons/digester/rss/Channel.java | 12 ++++++------ .../org/apache/commons/jelly/tags/http/MultipartPostTag.java | 2 +- .../java/org/apache/commons/jelly/tags/http/PostTag.java | 2 +- .../main/java/org/apache/commons/jelly/tags/http/PutTag.java | 2 +- .../apache/commons/jelly/tags/jetty/DeleteRequestTag.java | 2 +- .../org/apache/commons/jelly/tags/jetty/GetRequestTag.java | 2 +- .../org/apache/commons/jelly/tags/jetty/PostRequestTag.java | 2 +- .../org/apache/commons/jelly/tags/jetty/PutRequestTag.java | 2 +- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/core/src/main/java/org/apache/commons/jelly/JellyContext.java b/core/src/main/java/org/apache/commons/jelly/JellyContext.java index e16dc5ab..c61e3d32 100644 --- a/core/src/main/java/org/apache/commons/jelly/JellyContext.java +++ b/core/src/main/java/org/apache/commons/jelly/JellyContext.java @@ -902,7 +902,7 @@ public class JellyContext { /** - * Return the class loader to be used for instantiating application objects + * Gets the class loader to be used for instantiating application objects * when required. This is determined based upon the following rules: * <ul> * <li>The class loader set by <code>setClassLoader()</code>, if any</li> @@ -927,7 +927,7 @@ public class JellyContext { } /** - * Return the boolean as to whether the context classloader should be used. + * Gets the boolean as to whether the context classloader should be used. */ public boolean getUseContextClassLoader() { return useContextClassLoader; diff --git a/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java b/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java index b4b7b818..8b20d9a8 100644 --- a/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java +++ b/core/src/main/java/org/apache/commons/jelly/impl/DefaultTagLibraryResolver.java @@ -117,7 +117,7 @@ public class DefaultTagLibraryResolver implements TagLibraryResolver { //------------------------------------------------------------------------- /** - * Return the class loader to be used for instantiating application objects + * Gets the class loader to be used for instantiating application objects * when required. This is determined based upon the following rules: * <ul> * <li>The class loader set by <code>setClassLoader()</code>, if any</li> @@ -142,7 +142,7 @@ public class DefaultTagLibraryResolver implements TagLibraryResolver { } /** - * Return the boolean as to whether the context classloader should be used. + * Gets the boolean as to whether the context classloader should be used. */ public boolean getUseContextClassLoader() { return useContextClassLoader; diff --git a/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java b/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java index 90713896..ee055f5f 100644 --- a/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java +++ b/core/src/main/java/org/apache/commons/jelly/tags/core/BaseClassLoaderTag.java @@ -40,7 +40,7 @@ public abstract class BaseClassLoaderTag extends TagSupport { protected boolean useContextClassLoader = false; /** - * Return the class loader to be used for instantiating application objects + * Gets the class loader to be used for instantiating application objects * when required. This is determined based upon the following rules: * <ul> * <li>The class loader set by <code>setClassLoader()</code>, if any</li> @@ -65,7 +65,7 @@ public abstract class BaseClassLoaderTag extends TagSupport { } /** - * Return the boolean as to whether the context classloader should be used. + * Gets the boolean as to whether the context classloader should be used. */ public boolean getUseContextClassLoader() { return useContextClassLoader; diff --git a/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java b/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java index 57941c27..cdc07ca5 100644 --- a/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java +++ b/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java @@ -29,7 +29,7 @@ public class ClassLoaderUtils { private static final Log log = LogFactory.getLog(ClassLoaderUtils.class); /** - * Return the class loader to be used for instantiating application objects + * Gets the class loader to be used for instantiating application objects * when required. This is determined based upon the following rules: * <ul> * <li>The specified class loader, if any</li> @@ -52,7 +52,7 @@ public class ClassLoaderUtils { } /** - * Return the class loader to be used for instantiating application objects + * Gets the class loader to be used for instantiating application objects * when a context class loader is not specified. This is determined based upon the following rules: * <ul> * <li>The specified class loader, if any</li> diff --git a/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java b/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java index 74e018e5..8705e82b 100644 --- a/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java +++ b/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java @@ -71,7 +71,7 @@ public class MyTagLibrary extends TagLibrary { } /** - * Return the bean class that we should use for the given element name + * Gets the bean class that we should use for the given element name * * @param name is the XML element name * @param attributes the XML attributes diff --git a/jelly-tags/betwixt/src/test/java/org/apache/commons/digester/rss/Channel.java b/jelly-tags/betwixt/src/test/java/org/apache/commons/digester/rss/Channel.java index c81fafce..3bc32018 100644 --- a/jelly-tags/betwixt/src/test/java/org/apache/commons/digester/rss/Channel.java +++ b/jelly-tags/betwixt/src/test/java/org/apache/commons/digester/rss/Channel.java @@ -296,7 +296,7 @@ public class Channel implements Serializable { /** - * Return the items for this channel. + * Gets the items for this channel. */ public Item[] findItems() { synchronized (items) { @@ -307,7 +307,7 @@ public class Channel implements Serializable { /** - * Return the items for this channel. + * Gets the items for this channel. */ public Item[] getItems() { return findItems(); @@ -315,7 +315,7 @@ public class Channel implements Serializable { /** - * Return the skip days for this channel. + * Gets the skip days for this channel. */ public String[] findSkipDays() { synchronized (skipDays) { @@ -326,7 +326,7 @@ public class Channel implements Serializable { /** - * Return the skip hours for this channel. + * Gets the skip hours for this channel. */ public String[] getSkipHours() { return findSkipHours(); @@ -334,7 +334,7 @@ public class Channel implements Serializable { /** - * Return the skip hours for this channel. + * Gets the skip hours for this channel. */ public String[] findSkipHours() { synchronized (skipHours) { @@ -345,7 +345,7 @@ public class Channel implements Serializable { /** - * Return the skip days for this channel. + * Gets the skip days for this channel. */ public String[] getSkipDays() { return findSkipDays(); diff --git a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java index b1d3f243..346f7d27 100644 --- a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java +++ b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java @@ -59,7 +59,7 @@ public class MultipartPostTag extends PostTag { } /** - * Return a {@link HttpMethod method} to be used for multi-part post'ing + * Gets a {@link HttpMethod method} to be used for multi-part post'ing * * @return a HttpUrlMethod implementation * @throws MalformedURLException when the {@link #getUri() URI} or diff --git a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java index d017c063..82f4dfa2 100644 --- a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java +++ b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java @@ -38,7 +38,7 @@ public class PostTag extends HttpTagSupport { } /** - * Return a {@link HttpMethod method} to be used for post'ing + * Gets a {@link HttpMethod method} to be used for post'ing * * @return a HttpUrlMethod implementation * @throws MalformedURLException when the {@link #getUri() URI} or diff --git a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java index 61f1d503..dc57cd2b 100644 --- a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java +++ b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java @@ -37,7 +37,7 @@ public class PutTag extends HttpTagSupport { } /** - * Return a {@link HttpMethod method} to be used for put'ing + * Gets a {@link HttpMethod method} to be used for put'ing * * @return a HttpMethod implementation * @throws MalformedURLException when the {@link #getUri() URI} or diff --git a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/DeleteRequestTag.java b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/DeleteRequestTag.java index 052b6367..34a62096 100644 --- a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/DeleteRequestTag.java +++ b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/DeleteRequestTag.java @@ -25,7 +25,7 @@ package org.apache.commons.jelly.tags.jetty; */ public class DeleteRequestTag extends AbstractMethodHandlerTag { - /** Return the name of the http method handled by this tag */ + /** Gets the name of the http method handled by this tag */ @Override public String getMethodHandled() { return "DELETE"; diff --git a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/GetRequestTag.java b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/GetRequestTag.java index 88e1dabf..cbb1bfbe 100644 --- a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/GetRequestTag.java +++ b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/GetRequestTag.java @@ -24,7 +24,7 @@ package org.apache.commons.jelly.tags.jetty; */ public class GetRequestTag extends AbstractMethodHandlerTag { - /** Return the name of the http method handled by this tag */ + /** Gets the name of the http method handled by this tag */ @Override public String getMethodHandled() { return "GET"; diff --git a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PostRequestTag.java b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PostRequestTag.java index d6f9c088..05e8850b 100644 --- a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PostRequestTag.java +++ b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PostRequestTag.java @@ -24,7 +24,7 @@ package org.apache.commons.jelly.tags.jetty; */ public class PostRequestTag extends AbstractMethodHandlerTag { - /** Return the name of the http method handled by this tag */ + /** Gets the name of the http method handled by this tag */ @Override public String getMethodHandled() { return "POST"; diff --git a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PutRequestTag.java b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PutRequestTag.java index a2ed80f1..2266c7d8 100644 --- a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PutRequestTag.java +++ b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/PutRequestTag.java @@ -25,7 +25,7 @@ package org.apache.commons.jelly.tags.jetty; /** A tag for the http PUT method */ public class PutRequestTag extends AbstractMethodHandlerTag { - /** Return the name of the http method handled by this tag */ + /** Gets the name of the http method handled by this tag */ @Override public String getMethodHandled() { return "PUT";