Author: mgrigorov
Date: Mon Jul 19 15:15:32 2010
New Revision: 965529
URL: http://svn.apache.org/viewvc?rev=965529&view=rev
Log:
Fix javadoc for the deprecated #mount() and mountBookmarkablePage() methods
No functional change!
Modified:
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
Modified:
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java?rev=965529&r1=965528&r2=965529&view=diff
==============================================================================
---
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
(original)
+++
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
Mon Jul 19 15:15:32 2010
@@ -281,7 +281,7 @@ public abstract class WebApplication ext
* @param mapper
* the encoder that will be used for this mount
*
- * @deprecated this is the same as {...@code
getRootMapperAsCompound().add(mapper)}
+ * @deprecated this is the same as {...@code
getRootRequestMapperAsCompound().add(mapper)}
*/
@Deprecated
public final void mount(IRequestMapper mapper)
@@ -301,8 +301,8 @@ public abstract class WebApplication ext
* @param bookmarkablePageClass
* the bookmarkable page class to mount
*
- * @deprecated use mounted mapper instead, this method can be
represented as {...@code
- * getRootMapperAsCompound().add(new
MountedMapper(path,clazz))}
+ * @deprecated use mounted mapper instead, this method can be
represented as
+ * {...@code getRootRequestMapperAsCompound().add(new
MountedMapper(path, bookmarkablePageClass))}
*/
@Deprecated
public final <T extends Page> void mountBookmarkablePage(final String
path,