diff options
author | Steve Northover <steve> | 2002-05-17 03:56:01 +0000 |
---|---|---|
committer | Steve Northover <steve> | 2002-05-17 03:56:01 +0000 |
commit | b2b07a82be6fdafc544f42419719ff3a56c1efcb (patch) | |
tree | a52474663e2eab6c0837fa061b8c28fca3e94a42 | |
parent | b09d85431c1af82b0de2881a1e33c1c39594fb4b (diff) | |
download | eclipse.platform.swt-b2b07a82be6fdafc544f42419719ff3a56c1efcb.tar.gz eclipse.platform.swt-b2b07a82be6fdafc544f42419719ff3a56c1efcb.tar.xz eclipse.platform.swt-b2b07a82be6fdafc544f42419719ff3a56c1efcb.zip |
7734
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java | 4 | ||||
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java index 4157253d5b..3d7b0ca684 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java @@ -18,7 +18,9 @@ import org.eclipse.swt.internal.SWTEventObject; public class TypedEvent extends SWTEventObject {
/**
- * the display that the event occurred in
+ * the display where the event occurred
+ *
+ * @since 2.0
*/
public Display display;
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java index b050772fa6..1db4e0ef2b 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java @@ -33,7 +33,9 @@ public class Event { public int type;
/**
- * the display that the event occurred on
+ * the display where the event occurred
+ *
+ * @since 2.0
*/
public Display display;
|