You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2016/07/14 18:04:42 UTC

wicket git commit: WICKET-5623 javadoc explain null

Repository: wicket
Updated Branches:
  refs/heads/WICKET-5623-extensible-propertyresolver 899f824d8 -> ea1bcc14b


WICKET-5623 javadoc explain null


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/ea1bcc14
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/ea1bcc14
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/ea1bcc14

Branch: refs/heads/WICKET-5623-extensible-propertyresolver
Commit: ea1bcc14ba9f34f1e70b3b76b374b8fd324b3ad2
Parents: 899f824
Author: Sven Meier <sv...@apache.org>
Authored: Thu Jul 14 20:04:26 2016 +0200
Committer: Sven Meier <sv...@apache.org>
Committed: Thu Jul 14 20:04:26 2016 +0200

----------------------------------------------------------------------
 .../apache/wicket/core/util/lang/PropertyResolver.java  | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/ea1bcc14/wicket-core/src/main/java/org/apache/wicket/core/util/lang/PropertyResolver.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/core/util/lang/PropertyResolver.java b/wicket-core/src/main/java/org/apache/wicket/core/util/lang/PropertyResolver.java
index 28023e1..ad51533 100644
--- a/wicket-core/src/main/java/org/apache/wicket/core/util/lang/PropertyResolver.java
+++ b/wicket-core/src/main/java/org/apache/wicket/core/util/lang/PropertyResolver.java
@@ -263,13 +263,13 @@ public final class PropertyResolver
 
 	/**
 	 * Receives the class parameter also, since this method can resolve the type for some
-	 * expression, only knowing the target class
+	 * expression, only knowing the target class.
 	 *
-	 * @param expression
-	 * @param object
-	 * @param tryToCreateNull
-	 * @param clz
-	 * @return {@link ObjectWithGetAndSet}
+	 * @param expression property expression
+	 * @param object root object
+	 * @param tryToCreateNull how should null values be handled
+	 * @param clz owning clazz
+	 * @return final getAndSet and the target to apply it on, or {@code null} if expression results in an intermediate null
 	 */
 	private static ObjectWithGetAndSet getObjectWithGetAndSet(final String expression, final Object object, final int tryToCreateNull, Class<?> clz)
 	{