Searched refs:InvocationEvent (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DPeerEvent.java28 import java.awt.event.InvocationEvent;
30 public class PeerEvent extends InvocationEvent {
H A DGlobalCursorManager.java30 import java.awt.event.InvocationEvent;
56 public void postIfNotPending(Component heavy, InvocationEvent in) {
71 * a singleton InvocationEvent because we want each event to have a fresh
119 nativeUpdater.postIfNotPending(heavy, new InvocationEvent
H A DAppContext.java34 import java.awt.event.InvocationEvent;
413 // First, we post an InvocationEvent to be run on the
452 new InvocationEvent(Toolkit.getDefaultToolkit(), runnable));
458 // Next, we post another InvocationEvent to the end of the
469 new InvocationEvent(Toolkit.getDefaultToolkit(), runnable));
/openjdk7/jdk/test/java/awt/event/InvocationEvent/
H A DInvocationEventTest.java35 * summary: Tests new isDispatched method of the InvocationEvent class
51 InvocationEvent event = new InvocationEvent(tk, runnable, lock, true);
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DInvocationEvent.java44 * of any particular {@code InvocationEvent} instance is not
57 public class InvocationEvent extends AWTEvent implements ActiveEvent { class in inherits:AWTEvent,ActiveEvent
131 * Constructs an <code>InvocationEvent</code> with the specified
135 * <tt>InvocationEvent(source, runnable)</tt>
137 * <tt>{@link #InvocationEvent(Object, Runnable, Object, boolean) InvocationEvent}(source, runnable, null, false)</tt>.
147 * @see #InvocationEvent(Object, Runnable, Object, boolean)
149 public InvocationEvent(Object source, Runnable runnable) { method in class:InvocationEvent
154 * Constructs an <code>InvocationEvent</code> with the specified
159 * <p>An invocation of the form <tt>InvocationEvent(sourc
186 public InvocationEvent(Object source, Runnable runnable, Object notifier, method in class:InvocationEvent
222 protected InvocationEvent(Object source, int id, Runnable runnable, method in class:InvocationEvent
[all...]
/openjdk7/jdk/test/java/awt/EventQueue/PushPopDeadlock2/
H A DPushPopTest.java65 InvocationEvent ie = new InvocationEvent(eq2, runnable, null, false);
94 InvocationEvent ie = new InvocationEvent(MyEventQueue2.this, runnable, null, false);
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventQueue.java760 * <code>ActionEvent</code>s, and <code>InvocationEvent</code>s have
769 * <code>ActionEvent</code>, or <code>InvocationEvent</code> to be
775 * @see java.awt.event.InvocationEvent#getWhen
878 topQueue.postEventPrivate(new InvocationEvent(topQueue, dummyRunnable));
949 topQueue.postEventPrivate(new InvocationEvent(topQueue, dummyRunnable));
1190 } else if (e instanceof InvocationEvent) {
1191 InvocationEvent ie = (InvocationEvent)e;
1218 new InvocationEvent(Toolkit.getDefaultToolkit(), runnable));
1260 InvocationEvent even
[all...]
H A DToolkit.java2396 event.id >= InvocationEvent.INVOCATION_FIRST &&
2397 event.id <= InvocationEvent.INVOCATION_LAST)
H A DDialog.java1067 eventQueue.postEvent(new InvocationEvent(this, createEDT));
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DLWCToolkit.java33 import java.awt.event.InvocationEvent;
519 // The InvocationEvent will call LWCToolkit.stopAWTRunLoop() when finished, which will stop our manual runloop
524 InvocationEvent invocationEvent =
525 new InvocationEvent(component != null ? component : Toolkit.getDefaultToolkit(), event) {
561 final InvocationEvent invocationEvent =
562 new InvocationEvent(component != null ? component : Toolkit.getDefaultToolkit(), event);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedCanvasPeer.java336 postEvent(new InvocationEvent(target, new Runnable() {
349 postEvent(new InvocationEvent(target, new Runnable() {
362 postEvent(new InvocationEvent(target, new Runnable() {
494 postEvent(new InvocationEvent(target, new Runnable() {
506 postEvent(new InvocationEvent(target, new Runnable() {
518 postEvent(new InvocationEvent(target, new Runnable() {
534 postEvent(new InvocationEvent(target, new Runnable() {
H A DXBaseMenuWindow.java907 InvocationEvent ev = new InvocationEvent(target, new Runnable() {
937 InvocationEvent ev = new InvocationEvent(event.getSource(), new Runnable() {
H A DXChoicePeer.java1030 InvocationEvent ev = new InvocationEvent(target, new Runnable() {
1082 InvocationEvent ev = new InvocationEvent(target, new Runnable() {
H A DXEmbedChildProxyPeer.java329 // XToolkit.postEvent(XToolkit.targetToAppContext(proxy), new InvocationEvent(proxy, new Runnable() {
358 postEvent(new InvocationEvent(proxy, new Runnable() {
H A DXDecoratedPeer.java30 import java.awt.event.InvocationEvent;
1188 postEvent(new InvocationEvent(target, new Runnable() {
H A DXComponentPeer.java56 import java.awt.event.InvocationEvent;
623 postEvent(new InvocationEvent(parentWindow, new Runnable() {
H A DXListPeer.java1649 InvocationEvent ev = new InvocationEvent(target, new Runnable() {
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java238 new InvocationEvent(this, r));
H A DWComponentPeer.java39 import java.awt.event.InvocationEvent;
502 postEvent(new InvocationEvent(c, r));
624 postEvent(new InvocationEvent(target, new Runnable() {
H A DWInputMethod.java582 new InvocationEvent(source, r));
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodManager.java41 import java.awt.event.InvocationEvent;
348 InvocationEvent event =
349 new InvocationEvent(requester,
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRepaintManager.java1394 postEvent(new InvocationEvent(Toolkit.getDefaultToolkit(),
1398 postEvent(new InvocationEvent(Toolkit.getDefaultToolkit(),
1626 eventQueue.postEvent(new InvocationEvent(
/openjdk7/jdk/make/sun/awt/
H A DFILES_export_windows.gmk84 java/awt/event/InvocationEvent.java \
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletPanel.java911 appEvtQ.postEvent(new InvocationEvent(Toolkit.getDefaultToolkit(),

Completed in 140 milliseconds