summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2006-05-03 20:02:09 +0000
committerCarolyn MacLeod <carolyn>2006-05-03 20:02:09 +0000
commite880a6e84e2c212aad35915a8e501a30b543c4fe (patch)
tree33caaa46660a67b93663d6f950933dbf725b03f3 /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
parentdd2daaefe7b01d6308af5987fb9008de6a622b64 (diff)
downloadeclipse.platform.swt-e880a6e84e2c212aad35915a8e501a30b543c4fe.tar.gz
eclipse.platform.swt-e880a6e84e2c212aad35915a8e501a30b543c4fe.tar.xz
eclipse.platform.swt-e880a6e84e2c212aad35915a8e501a30b543c4fe.zip
Javadoc basher output for 3.2RC3
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java33
1 files changed, 21 insertions, 12 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
index fd88aa11e6..2ee1970aca 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
@@ -454,9 +454,11 @@ public Display (DeviceData data) {
/**
* Adds the listener to the collection of listeners who will
- * be notifed when an event of the given type occurs anywhere
- * in a widget. When the event does occur, the listener is
- * notified by sending it the <code>handleEvent()</code> message.
+ * be notified when an event of the given type occurs anywhere
+ * in a widget. The event type is one of the event constants
+ * defined in class <code>SWT</code>. When the event does occur,
+ * the listener is notified by sending it the <code>handleEvent()</code>
+ * message.
* <p>
* Setting the type of an event to <code>SWT.None</code> from
* within the <code>handleEvent()</code> method can be used to
@@ -480,6 +482,7 @@ public Display (DeviceData data) {
* </ul>
*
* @see Listener
+ * @see SWT
* @see #removeFilter
* @see #removeListener
*
@@ -522,8 +525,9 @@ void addGdkEvent (int /*long*/ event) {
/**
* Adds the listener to the collection of listeners who will
- * be notifed when an event of the given type occurs. When the
- * event does occur in the display, the listener is notified by
+ * be notified when an event of the given type occurs. The event
+ * type is one of the event constants defined in class <code>SWT</code>.
+ * When the event does occur in the display, the listener is notified by
* sending it the <code>handleEvent()</code> message.
*
* @param eventType the type of event to listen for
@@ -538,6 +542,7 @@ void addGdkEvent (int /*long*/ event) {
* </ul>
*
* @see Listener
+ * @see SWT
* @see #removeListener
*
* @since 2.0
@@ -1893,10 +1898,10 @@ public Color getSystemColor (int id) {
* specified in class <code>SWT</code>. This cursor should
* not be free'd because it was allocated by the system,
* not the application. A value of <code>null</code> will
- * be returned if the supplied constant is not an swt cursor
+ * be returned if the supplied constant is not an SWT cursor
* constant.
*
- * @param id the swt cursor constant
+ * @param id the SWT cursor constant
* @return the corresponding cursor or <code>null</code>
*
* @exception SWTException <ul>
@@ -1945,10 +1950,10 @@ public Cursor getSystemCursor (int id) {
* not be free'd because it was allocated by the system,
* not the application. A value of <code>null</code> will
* be returned either if the supplied constant is not an
- * swt icon constant or if the platform does not define an
+ * SWT icon constant or if the platform does not define an
* image that corresponds to the constant.
*
- * @param id the swt icon constant
+ * @param id the SWT icon constant
* @return the corresponding image or <code>null</code>
*
* @exception SWTException <ul>
@@ -3028,8 +3033,9 @@ void releaseDisplay () {
/**
* Removes the listener from the collection of listeners who will
- * be notifed when an event of the given type occurs anywhere in
- * a widget.
+ * be notified when an event of the given type occurs anywhere in
+ * a widget. The event type is one of the event constants defined
+ * in class <code>SWT</code>.
*
* @param eventType the type of event to listen for
* @param listener the listener which should no longer be notified when the event occurs
@@ -3042,6 +3048,7 @@ void releaseDisplay () {
* </ul>
*
* @see Listener
+ * @see SWT
* @see #addFilter
* @see #addListener
*
@@ -3072,7 +3079,8 @@ int /*long*/ removeGdkEvent () {
/**
* Removes the listener from the collection of listeners who will
- * be notifed when an event of the given type occurs.
+ * be notified when an event of the given type occurs. The event type
+ * is one of the event constants defined in class <code>SWT</code>.
*
* @param eventType the type of event to listen for
* @param listener the listener which should no longer be notified when the event occurs
@@ -3086,6 +3094,7 @@ int /*long*/ removeGdkEvent () {
* </ul>
*
* @see Listener
+ * @see SWT
* @see #addListener
*
* @since 2.0