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

svn commit: r573175 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/IPropertyReflectionAwareModel.java

Author: dashorst
Date: Thu Sep  6 01:25:41 2007
New Revision: 573175

URL: http://svn.apache.org/viewvc?rev=573175&view=rev
Log:
Fixed typo in javadoc

Modified:
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/IPropertyReflectionAwareModel.java

Modified: wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/IPropertyReflectionAwareModel.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/IPropertyReflectionAwareModel.java?rev=573175&r1=573174&r2=573175&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/IPropertyReflectionAwareModel.java (original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/IPropertyReflectionAwareModel.java Thu Sep  6 01:25:41 2007
@@ -20,11 +20,11 @@
 import java.lang.reflect.Method;
 
 /**
- * Optional interface implemented by models that are able to provide
- * reflection information about object property they interact with.
+ * Optional interface implemented by models that are able to provide reflection information about
+ * object property they interact with.
  * 
- * The model doesn't have to support all propery information in this 
- * interface. It is valid to return null for any method.
+ * The model doesn't have to support all property information in this interface. It is valid to
+ * return null for any method.
  * 
  * @author Matej Knopp
  */
@@ -32,21 +32,22 @@
 {
 	/**
 	 * Returns the field of model property or null if the field doesn't exist.
+	 * 
 	 * @return Field or null
 	 */
 	public Field getPropertyField();
-	
+
 	/**
-	 * Returns the getter method of model property or null if the method
-	 * doesn't exist.
+	 * Returns the getter method of model property or null if the method doesn't exist.
+	 * 
 	 * @return Method or null
 	 */
 	public Method getPropertyGetter();
-	
-	
+
+
 	/**
-	 * Returns the setter metod of model property or null if the method doesn't
-	 * exist.
+	 * Returns the setter metod of model property or null if the method doesn't exist.
+	 * 
 	 * @return Method or null
 	 */
 	public Method getPropertySetter();