Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Hall2009-06-29 15:14:06 +0000
committerMatthew Hall2009-06-29 15:14:06 +0000
commit813318f445565da0aa4d4e575a164dc1e06c9c08 (patch)
tree538625157c01d1804f7019f0d00128920b6aefa3
parent7381f16fb3fa50ecbfe36ed2f45efc6c2f9241b1 (diff)
downloadorg.eclipse.e4.databinding-813318f445565da0aa4d4e575a164dc1e06c9c08.tar.gz
org.eclipse.e4.databinding-813318f445565da0aa4d4e575a164dc1e06c9c08.tar.xz
org.eclipse.e4.databinding-813318f445565da0aa4d4e575a164dc1e06c9c08.zip
FIXED - bug 278311: [DataBinding] INativePropertyListener methods should document that source may be nullM20090708-0800aM20090708-0800
https://bugs.eclipse.org/bugs/show_bug.cgi?id=278311
-rw-r--r--bundles/org.eclipse.core.databinding.property/src/org/eclipse/core/databinding/property/INativePropertyListener.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.core.databinding.property/src/org/eclipse/core/databinding/property/INativePropertyListener.java b/bundles/org.eclipse.core.databinding.property/src/org/eclipse/core/databinding/property/INativePropertyListener.java
index 3dfd6843..a46b83cf 100644
--- a/bundles/org.eclipse.core.databinding.property/src/org/eclipse/core/databinding/property/INativePropertyListener.java
+++ b/bundles/org.eclipse.core.databinding.property/src/org/eclipse/core/databinding/property/INativePropertyListener.java
@@ -7,7 +7,7 @@
*
* Contributors:
* Matthew Hall - initial API and implementation (bug 194734)
- * Matthew Hall - bug 265561
+ * Matthew Hall - bugs 265561, 278311
******************************************************************************/
package org.eclipse.core.databinding.property;
@@ -36,7 +36,7 @@ public interface INativePropertyListener {
* property source.
*
* @param source
- * the property source
+ * the property source (may be null)
* @noreference This method is not intended to be referenced by clients.
*/
public void addTo(Object source);
@@ -46,7 +46,7 @@ public interface INativePropertyListener {
* property source.
*
* @param source
- * the property source
+ * the property source (may be null)
* @noreference This method is not intended to be referenced by clients.
*/
public void removeFrom(Object source);

Back to the top