You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2010/08/13 09:21:33 UTC

svn commit: r985111 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/IHeaderResponse.java

Author: ivaynberg
Date: Fri Aug 13 07:21:33 2010
New Revision: 985111

URL: http://svn.apache.org/viewvc?rev=985111&view=rev
Log:
javadoc clarification

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/IHeaderResponse.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/IHeaderResponse.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/IHeaderResponse.java?rev=985111&r1=985110&r2=985111&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/IHeaderResponse.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/IHeaderResponse.java Fri Aug 13 07:21:33 2010
@@ -52,7 +52,7 @@ public interface IHeaderResponse
 	 * Writes a javascript reference, if the specified reference hasn't been rendered yet.
 	 * 
 	 * @param url
-	 *            url of the the javascript resource
+	 *            context-relative url of the the javascript resource
 	 */
 	public void renderJavascriptReference(String url);
 
@@ -60,7 +60,7 @@ public interface IHeaderResponse
 	 * Writes a javascript reference, if the specified reference hasn't been rendered yet.
 	 * 
 	 * @param url
-	 *            url of the the javascript resource
+	 *            context-relative url of the the javascript resource
 	 * @param id
 	 *            id that will be used to filter duplicate reference (it's still filtered by URL
 	 *            too)
@@ -94,7 +94,7 @@ public interface IHeaderResponse
 	 * Writes a CSS reference, if the specified reference hasn't been rendered yet.
 	 * 
 	 * @param url
-	 *            url of the CSS resource
+	 *            context-relative url of the CSS resource
 	 */
 	public void renderCSSReference(String url);
 
@@ -112,7 +112,7 @@ public interface IHeaderResponse
 	 * Writes a CSS reference, if the specified reference hasn't been rendered yet.
 	 * 
 	 * @param url
-	 *            url of the CSS resource
+	 *            context-relative url of the CSS resource
 	 * @param media
 	 *            the media type for this CSS ("print", "screen", etc.)
 	 */