Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNigel Westbury2015-11-22 16:01:50 +0000
committerNigel Westbury2015-11-22 16:01:50 +0000
commitbb5b83381fe06e69de0d58d741bade65a0c3a763 (patch)
treedd27d1b5256406f43edc0c6ca748c9eb86d87aa0
parent034e45af8ae3e96fe080f8f8aabaa31b92cd4fa7 (diff)
downloadorg.eclipse.e4.databinding-bb5b83381fe06e69de0d58d741bade65a0c3a763.tar.gz
org.eclipse.e4.databinding-bb5b83381fe06e69de0d58d741bade65a0c3a763.tar.xz
org.eclipse.e4.databinding-bb5b83381fe06e69de0d58d741bade65a0c3a763.zip
fix javadoc that was causing the IDE to show errors
-rw-r--r--bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetListProperty.java2
-rw-r--r--bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetValueProperty.java2
-rw-r--r--bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerListProperty.java2
-rw-r--r--bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerSetProperty.java2
-rw-r--r--bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerValueProperty.java2
5 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetListProperty.java b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetListProperty.java
index f9218b72..fe1499a9 100644
--- a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetListProperty.java
+++ b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetListProperty.java
@@ -22,7 +22,7 @@ import org.eclipse.swt.widgets.Widget;
* class implements some basic behavior that widget properties are generally
* expected to have, namely:
* <ul>
- * <li>Calling {@link #observe(Object)} should create the observable on the
+ * <li>Calling {@link #observe(Widget)} should create the observable on the
* display realm of the widget, rather than the current default realm
* <li>All <code>observe()</code> methods should return an
* {@link ISWTObservable}
diff --git a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetValueProperty.java b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetValueProperty.java
index 395b27c4..06339ff4 100644
--- a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetValueProperty.java
+++ b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/WidgetValueProperty.java
@@ -28,7 +28,7 @@ import org.eclipse.swt.widgets.Widget;
* class implements some basic behavior that widget properties are generally
* expected to have, namely:
* <ul>
- * <li>Calling {@link #observe(Object)} should create the observable on the
+ * <li>Calling {@link #observe(Widget)} should create the observable on the
* display realm of the widget, rather than the current default realm
* <li>All <code>observe()</code> methods should return an
* {@link ISWTObservableValue}
diff --git a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerListProperty.java b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerListProperty.java
index b264274c..346580df 100644
--- a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerListProperty.java
+++ b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerListProperty.java
@@ -24,7 +24,7 @@ import org.eclipse.jface.viewers.Viewer;
* class implements some basic behavior that viewer properties are generally
* expected to have, namely:
* <ul>
- * <li>Calling {@link #observe(Object)} should create the observable on the
+ * <li>Calling {@link #observe(Viewer)} should create the observable on the
* display realm of the viewer's control, rather than the current default realm
* <li>All <code>observe()</code> methods should return an
* {@link IViewerObservableList}
diff --git a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerSetProperty.java b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerSetProperty.java
index d3440da3..1ea4c526 100644
--- a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerSetProperty.java
+++ b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerSetProperty.java
@@ -24,7 +24,7 @@ import org.eclipse.jface.viewers.Viewer;
* class implements some basic behavior that viewer properties are generally
* expected to have, namely:
* <ul>
- * <li>Calling {@link #observe(Object)} should create the observable on the
+ * <li>Calling {@link #observe(Viewer)} should create the observable on the
* display realm of the viewer's control, rather than the current default realm
* <li>All <code>observe()</code> methods should return an
* {@link IViewerObservableSet}
diff --git a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerValueProperty.java b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerValueProperty.java
index 4e4a8bdc..07648c56 100644
--- a/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerValueProperty.java
+++ b/bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewerValueProperty.java
@@ -24,7 +24,7 @@ import org.eclipse.jface.viewers.Viewer;
* class implements some basic behavior that viewer properties are generally
* expected to have, namely:
* <ul>
- * <li>Calling {@link #observe(Object)} should create the observable on the
+ * <li>Calling {@link #observe(Viewer)} should create the observable on the
* display realm of the viewer's control, rather than the current default realm
* <li>All <code>observe()</code> methods should return an
* {@link IViewerObservableValue}

Back to the top