Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,6 @@ public Point computeSize (int wHint, int hHint, boolean changed) {
* <p>
* The current selection is copied to the clipboard.
* </p>
*
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down Expand Up @@ -1154,7 +1153,12 @@ void mouseDown(long id, long sel, long theEvent) {
* The selected text is deleted from the widget
* and new text inserted from the clipboard.
* </p>
*
* <p>
* <strong>Note:</strong> Pasting data to controls may occurs asynchronously. The widget
* text may not reflect the updated value immediately after calling this method.
* The new text will appear once pending events are processed in the event loop.
* Use {@link Display#asyncExec(Runnable)} before accessing <code>getText()</code>.
* </p>
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,6 @@ public Rectangle computeTrim (int x, int y, int width, int height) {
* <p>
* The current selection is copied to the clipboard.
* </p>
*
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down Expand Up @@ -1519,7 +1518,12 @@ boolean isNeeded(ScrollBar scrollbar) {
* The selected text is deleted from the widget
* and new text inserted from the clipboard.
* </p>
*
* <p>
* <strong>Note:</strong> Pasting data to controls may occurs asynchronously. The widget
* text may not reflect the updated value immediately after calling this method.
* The new text will appear once pending events are processed in the event loop.
* Use {@link Display#asyncExec(Runnable)} before accessing <code>getText()</code>.
* </p>
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,6 @@ Point computeSizeInPixels (Point hintInPoints, int zoom, boolean changed) {
* <p>
* The current selection is copied to the clipboard.
* </p>
*
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down Expand Up @@ -1494,7 +1493,12 @@ public int indexOf (String string, int start) {
* The selected text is deleted from the widget
* and new text inserted from the clipboard.
* </p>
*
* <p>
* <strong>Note:</strong> Pasting data to controls may occurs asynchronously. The widget
* text may not reflect the updated value immediately after calling this method.
* The new text will appear once pending events are processed in the event loop.
* Use {@link Display#asyncExec(Runnable)} before accessing <code>getText()</code>.
* </p>
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,6 @@ Point computeSizeInPixels (Point hintInPoints, int zoom, boolean changed) {
* <p>
* The current selection is copied to the clipboard.
* </p>
*
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down Expand Up @@ -1629,7 +1628,12 @@ boolean isUseWsBorder () {
* The selected text is deleted from the widget
* and new text inserted from the clipboard.
* </p>
*
* <p>
* <strong>Note:</strong> Pasting data to controls may occurs asynchronously. The widget
* text may not reflect the updated value immediately after calling this method.
* The new text will appear once pending events are processed in the event loop.
* Use {@link Display#asyncExec(Runnable)} before accessing <code>getText()</code>.
* </p>
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
Expand Down
Loading