You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2007/04/10 06:19:21 UTC

svn commit: r527014 - /incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/markup/html/form/AbstractSingleSelectChoice.java

Author: ehillenius
Date: Mon Apr  9 21:19:20 2007
New Revision: 527014

URL: http://svn.apache.org/viewvc?view=rev&rev=527014
Log:
made protected comment public

Modified:
    incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/markup/html/form/AbstractSingleSelectChoice.java

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/markup/html/form/AbstractSingleSelectChoice.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/markup/html/form/AbstractSingleSelectChoice.java?view=diff&rev=527014&r1=527013&r2=527014
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/markup/html/form/AbstractSingleSelectChoice.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/markup/html/form/AbstractSingleSelectChoice.java Mon Apr  9 21:19:20 2007
@@ -247,14 +247,17 @@
 		return "";
 	}
 
-
-	/*
+	/**
 	 * Gets whether the given value represents the current selection.
 	 * 
 	 * 
-	 * aram object The object to check @param index The index of the object in
-	 * the collection @param selected The current selected id value @return
-	 * Whether the given value represents the current selection
+	 * aram object The object to check
+	 * 
+	 * @param index
+	 *            The index of the object in the collection
+	 * @param selected
+	 *            The current selected id value
+	 * @return Whether the given value represents the current selection
 	 */
 	protected boolean isSelected(final Object object, int index, String selected)
 	{