Searched defs:theEvent (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DTracedEventQueue.java76 public void postEvent(AWTEvent theEvent) { argument
78 int id = theEvent.getID();
87 ": " + theEvent);
89 super.postEvent(theEvent);
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/
H A DHttpsURLConnectionLocalCertificateChain.java106 public void handshakeCompleted(HandshakeCompletedEvent theEvent) { argument
107 event = theEvent;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DTTY.java252 private void printLocationOfEvent(LocatableEvent theEvent) { argument
253 printBaseLocation(theEvent.thread().name(), theEvent.location());
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventQueue.java239 * @param theEvent an instance of <code>java.awt.AWTEvent</code>,
241 * @throws NullPointerException if <code>theEvent</code> is <code>null</code>
243 public void postEvent(AWTEvent theEvent) { argument
245 postEventPrivate(theEvent);
254 * @param theEvent an instance of <code>java.awt.AWTEvent</code>,
257 private final void postEventPrivate(AWTEvent theEvent) { argument
258 theEvent.isPosted = true;
263 nextQueue.postEventPrivate(theEvent);
267 if (theEvent.getSource() == AWTAutoShutdown.getInstance()) {
273 postEvent(theEvent, getPriorit
279 getPriority(AWTEvent theEvent) argument
307 postEvent(AWTEvent theEvent, int priority) argument
[all...]
H A DToolkit.java2257 * @param theEvent the event which will be dispatched.
2259 void notifyAWTEventListeners(AWTEvent theEvent) { argument
2266 .notifyAWTEventListeners(theEvent);
2272 eventListener.eventDispatched(theEvent);

Completed in 131 milliseconds