Fix for bug 169275: [DataBinding] IConverter javadoc references nonexistant methods
https://bugs.eclipse.org/bugs/show_bug.cgi?id=169275
diff --git a/bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/IConverter.java b/bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/IConverter.java
index 4c745a1..06952c0 100644
--- a/bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/IConverter.java
+++ b/bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/IConverter.java
@@ -39,13 +39,11 @@
 	public Object getToType();
 
 	/**
-	 * Returns the result of the conversion of the given object. The given
-	 * object must be an instance of getTargetType(), and the result must be an
-	 * instance of getModelType().
+	 * Returns the result of the conversion of the given object.
 	 * 
 	 * @param fromObject
-	 *            the object to convert
-	 * @return the converted object
+	 *            the object to convert, must be of type {@link #getFromType()}
+	 * @return the converted object, must be of type {@link #getToType()}
 	 */
 	public Object convert(Object fromObject);
 }