This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit a73d7472cb16e930544fd55cff97875c6af76c91 Author: juanpablo <[email protected]> AuthorDate: Wed Mar 4 15:45:47 2020 +0100 use Engine instead of WikiEngine on some javadocs --- .../src/main/java/org/apache/wiki/render/RenderingManager.java | 6 +++--- .../src/main/java/org/apache/wiki/search/SearchMatcher.java | 2 +- .../src/main/java/org/apache/wiki/url/URLConstructor.java | 10 ++++------ 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/jspwiki-main/src/main/java/org/apache/wiki/render/RenderingManager.java b/jspwiki-main/src/main/java/org/apache/wiki/render/RenderingManager.java index a459c16..0c1fdc1 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/render/RenderingManager.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/render/RenderingManager.java @@ -36,7 +36,7 @@ import java.util.Properties; /** * This class provides a facade towards the differing rendering routines. You should use the routines in this manager - * instead of the ones in WikiEngine, if you don't want the different side effects to occur - such as WikiFilters. + * instead of the ones in Engine, if you don't want the different side effects to occur - such as WikiFilters. * <p> * This class also manages a rendering cache, i.e. documents are stored between calls. You may control the cache by * tweaking the ehcache.xml file. @@ -66,7 +66,7 @@ public interface RenderingManager extends WikiEventListener, InternalModule { * Looks for alternative WikiRenderers, initializes one, or the default * XHTMLRenderer, for use. * - * @param engine A WikiEngine instance. + * @param engine A Engine instance. * @param properties A list of properties to get parameters from. * @throws WikiException If the manager could not be initialized. */ @@ -74,7 +74,7 @@ public interface RenderingManager extends WikiEventListener, InternalModule { /** * Beautifies the title of the page by appending spaces in suitable places, if the user has so decreed in the properties when - * constructing this WikiEngine. However, attachment names are only beautified by the name. + * constructing this Engine. However, attachment names are only beautified by the name. * * @param title The title to beautify * @return A beautified title (or, if beautification is off, returns the title without modification) diff --git a/jspwiki-main/src/main/java/org/apache/wiki/search/SearchMatcher.java b/jspwiki-main/src/main/java/org/apache/wiki/search/SearchMatcher.java index 1c2a4a4..f609615 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/search/SearchMatcher.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/search/SearchMatcher.java @@ -41,7 +41,7 @@ public class SearchMatcher { /** * Creates a new SearchMatcher. * - * @param engine The WikiEngine + * @param engine The Engine * @param queries A list of queries */ public SearchMatcher( final Engine engine, final QueryItem[] queries ) { diff --git a/jspwiki-main/src/main/java/org/apache/wiki/url/URLConstructor.java b/jspwiki-main/src/main/java/org/apache/wiki/url/URLConstructor.java index 862e275..e41f140 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/url/URLConstructor.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/url/URLConstructor.java @@ -27,11 +27,9 @@ import java.util.Properties; /** - * Provides an interface through which JSPWiki constructs URLs. - * JSPWiki calls the methods of this interface whenever an URL - * that points to any JSPWiki internals is required. For example, - * if you need to find an URL to the editor page for page "TextFormattingRules", - * you would call makeURL( WikiContext.EDIT, "TextFormattingRules", false, null ); + * Provides an interface through which JSPWiki constructs URLs. JSPWiki calls the methods of this interface whenever an URL + * that points to any JSPWiki internals is required. For example, if you need to find an URL to the editor page for page + * "TextFormattingRules", you would call makeURL( WikiContext.EDIT, "TextFormattingRules", false, null ); * * @since 2.2 */ @@ -40,7 +38,7 @@ public interface URLConstructor { * Initializes. Note that the engine is not fully initialized at this * point, so don't do anything fancy here - use lazy init, if you have to. * - * @param engine The WikiEngine that this URLConstructor belongs to + * @param engine The Engine that this URLConstructor belongs to * @param properties Properties used to initialize */ void initialize( Engine engine, Properties properties );
