diff options
author | Veronika Irvine | 2005-01-26 18:17:30 +0000 |
---|---|---|
committer | Veronika Irvine | 2005-01-26 18:17:30 +0000 |
commit | b58cdf1ea7c665df95c22509fb3fe8f876d0cbf4 (patch) | |
tree | 3b7ff7ff881cf5ec079a75b558efa4454e47255e | |
parent | 1a5ca70f905a51b34ddd34368679ad8c2e2127ee (diff) | |
download | eclipse.platform.swt-b58cdf1ea7c665df95c22509fb3fe8f876d0cbf4.tar.gz eclipse.platform.swt-b58cdf1ea7c665df95c22509fb3fe8f876d0cbf4.tar.xz eclipse.platform.swt-b58cdf1ea7c665df95c22509fb3fe8f876d0cbf4.zip |
bug 83251 - javadoc
5 files changed, 36 insertions, 16 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentListener.java index 08448155c1..b4051ec380 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentListener.java @@ -23,10 +23,14 @@ public interface BidiSegmentListener extends SWTEventListener { * This method is called when a line needs to be reordered for * measuring or rendering in a bidi locale. * <p> + * The following event fields are used:<ul> + * <li>event.lineOffset line start offset (input)</li> + * <li>event.lineText line text (input)</li> + * <li>event.segments text segments that should be reordered + * separately. (output)</li> + * </ul> * - * @param event.lineOffset line start offset (input) - * @param event.lineText line text (input) - * @param event.segments text segments that should be reordered + * @param event the given event * separately. (output) * @see BidiSegmentEvent */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java index 20d6c3fcbe..1646a9ed9a 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java @@ -16,10 +16,14 @@ public interface ExtendedModifyListener extends SWTEventListener { /** * This method is called after a text change occurs. * <p> + * The following event fields are used:<ul> + * <li>event.start the start offset of the new text (input)</li> + * <li>event.length the length of the new text (input)</li> + * <li>event.replacedText the replaced text (input)</li> + * </ul> * - * @param event.start the start offset of the new text (input) - * @param event.length the length of the new text (input) - * @param event.replacedText the replaced text (input) + * @param event the given event + * @see ExtendedModifyEvent */ public void modifyText(ExtendedModifyEvent event); } diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java index 1c3e3b7aaf..1995cb73d7 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java @@ -18,10 +18,14 @@ public interface LineBackgroundListener extends SWTEventListener { * This method is called when a line is about to be drawn in order to get its * background color. * <p> + * The following event fields are used:<ul> + * <li>event.lineOffset line start offset (input)</li> + * <li>event.lineText line text (input)</li> + * <li>event.lineBackground line background color (output)</li> + * </ul> * - * @param event.lineOffset line start offset (input) - * @param event.lineText line text (input) - * @param event.lineBackground line background color (output) + * @param event the given event + * @see LineBackgroundEvent */ public void lineGetBackground(LineBackgroundEvent event); } diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java index 9c729b83f5..8549dacab7 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java @@ -17,10 +17,14 @@ public interface LineStyleListener extends SWTEventListener { * This method is called when a line is about to be drawn in order to get the * line's style information. * <p> + * The following event fields are used:<ul> + * <li>event.lineOffset line start offset (input)</li> + * <li>event.lineText line text (input)</li> + * <li>event.styles array of StyleRanges, need to be in order (output)</li> + * </ul> * - * @param event.lineOffset line start offset (input) - * @param event.lineText line text (input) - * @param event.styles array of StyleRanges, need to be in order (output) + * @param event the given event + * @see LineStyleEvent */ public void lineGetStyle(LineStyleEvent event); } diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java index a92a801ec2..d09ab683e2 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java @@ -15,10 +15,14 @@ import org.eclipse.swt.internal.SWTEventListener; public interface VerifyKeyListener extends SWTEventListener { /** - * @param event.character the character that was typed (input) - * @param event.keyCode the key code that was typed (input) - * @param event.stateMask the state of the keyboard (input) - * @param event.doit processed or not (output) + * The following event fields are used:<ul> + * <li>event.character is the character that was typed (input)</li> + * <li>event.keyCode is the key code that was typed (input)</li> + * <li>event.stateMask is the state of the keyboard (input)</li> + * <li>event.doit is processed or not (output)</li> + * </ul> + * @param event the verify event + * @see VerifyEvent */ public void verifyKey (VerifyEvent event); } |