Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Cabe2009-09-28 19:00:53 +0000
committerBenjamin Cabe2009-09-28 19:00:53 +0000
commita2b6407f6a441472107105168c3a3ca146fd4e10 (patch)
treed0b6dcc13579483d334e6f0fd35c2d9bb330d0ba
parent880e4cb041b1310b319018829b79b625a2e56707 (diff)
downloadeclipse.pde.ui-bug_227055.tar.gz
eclipse.pde.ui-bug_227055.tar.xz
eclipse.pde.ui-bug_227055.zip
javadoc was a bit innacuratebug_227055
-rw-r--r--ui/org.eclipse.pde.ui/src/org/eclipse/pde/ui/customattributes/ICustomAttributeEditor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/ui/customattributes/ICustomAttributeEditor.java b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/ui/customattributes/ICustomAttributeEditor.java
index 456ade0580..611f8ad6b6 100644
--- a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/ui/customattributes/ICustomAttributeEditor.java
+++ b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/ui/customattributes/ICustomAttributeEditor.java
@@ -30,14 +30,14 @@ public interface ICustomAttributeEditor {
* For implementors this is a multi-step process:
* <ol>
* <li>Create one or more controls within the parent.</li>
- * <li>Register listeners on the created controls which call {@link IExtensionAttributeCallback#markDirty()} on the <code>callback</code> parameter if needed.</li>
+ * <li>Register listeners on the created controls which call {@link IPropertyChangeListener#propertyChange()} on the <code>listener</code> parameter if needed.</li>
* <li>Set the parent layout as needed.</li>
* </ol>
* </p>
*
* @param parent the parent control
* @param toolkit the form toolkit that can be used as a widget factory
- * @param listener the listener to notify when the editor value is updated. In 3.5 it is fine to perform a
+ * @param listener the listener to notify when the editor value is updated. In 3.6 it is fine to perform a
* <code>listener.propertyChange(null)</code> since we don't support property other than the "value" itself
* @noreference This method is not intended to be referenced by clients.
* @since 3.6

Back to the top