Searched defs:event (Results 251 - 275 of 476) sorted by relevance

<<11121314151617181920

/openjdk7/hotspot/agent/test/jdi/
H A DTargetListener.java25 import com.sun.jdi.event.*;
35 void eventReceived(Event event); argument
36 void breakpointReached(BreakpointEvent event); argument
37 void exceptionThrown(ExceptionEvent event); argument
38 void stepCompleted(StepEvent event); argument
39 void classPrepared(ClassPrepareEvent event); argument
40 void classUnloaded(ClassUnloadEvent event); argument
41 void methodEntered(MethodEntryEvent event); argument
42 void methodExited(MethodExitEvent event); argument
43 void fieldAccessed(AccessWatchpointEvent event); argument
44 fieldModified(ModificationWatchpointEvent event) argument
45 threadStarted(ThreadStartEvent event) argument
46 threadDied(ThreadDeathEvent event) argument
47 vmStarted(VMStartEvent event) argument
48 vmDied(VMDeathEvent event) argument
49 vmDisconnected(VMDisconnectEvent event) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorChooserPanel.java179 public void propertyChange(PropertyChangeEvent event) { argument
182 Object object = event.getNewValue();
H A DColorPanel.java33 import java.awt.event.ActionEvent;
34 import java.awt.event.ActionListener;
108 public void actionPerformed(ActionEvent event) { argument
110 this.z = Integer.parseInt(event.getActionCommand());
H A DDiagramComponent.java31 import java.awt.event.MouseEvent;
32 import java.awt.event.MouseListener;
33 import java.awt.event.MouseMotionListener;
115 public void mousePressed(MouseEvent event) { argument
116 mouseDragged(event);
119 public void mouseReleased(MouseEvent event) { argument
122 public void mouseClicked(MouseEvent event) { argument
125 public void mouseEntered(MouseEvent event) { argument
128 public void mouseExited(MouseEvent event) { argument
131 public void mouseMoved(MouseEvent event) { argument
134 mouseDragged(MouseEvent event) argument
[all...]
H A DSlidingSpinner.java33 import javax.swing.event.ChangeEvent;
34 import javax.swing.event.ChangeListener;
98 public void stateChanged(ChangeEvent event) { argument
100 if (this.spinner == event.getSource()) {
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DDocumentEvent.java25 package javax.swing.event;
60 * Gets the document that sourced the change event.
67 * Gets the type of event.
105 * Enumeration for document event types
H A DHyperlinkEvent.java25 package javax.swing.event;
27 import java.awt.event.InputEvent;
51 * Creates a new object representing a hypertext link event.
56 * @param source the object responsible for the event
57 * @param type the event type
65 * Creates a new object representing a hypertext link event.
67 * @param source the object responsible for the event
68 * @param type the event type
81 * Creates a new object representing a hypertext link event.
83 * @param source the object responsible for the event
[all...]
/openjdk7/jdk/src/share/classes/sun/audio/
H A DAudioDevice.java416 public void meta(MetaMessage event) { argument
417 if (event.getType() == 47 && sequencer != null) {
/openjdk7/jdk/src/share/classes/java/awt/im/
H A DInputContext.java265 * Dispatches an event to the active input method. Called by AWT.
266 * If no input method is available, then the event will never be consumed.
268 * @param event The event
269 * @exception NullPointerException if <code>event</code> is null
271 public void dispatchEvent(AWTEvent event) { argument
296 * are communicated to the active component using an input method event.
/openjdk7/jdk/src/share/classes/java/awt/im/spi/
H A DInputMethod.java198 * Dispatches the event to the input method. If input method support is
201 * they are dispatched to the component's methods or event listeners.
202 * The input method decides whether it needs to handle the event. If it
203 * does, it also calls the event's <code>consume</code> method; this
204 * causes the event to not get dispatched to the component's event
205 * processing methods or event listeners.
213 * @param event the event being dispatched to the input method
214 * @exception NullPointerException if <code>event</cod
216 dispatchEvent(AWTEvent event) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DVetoableChangeSupport.java125 * If <code>listener</code> was added more than once to the same event
209 * If <code>listener</code> was added more than once to the same event
258 * No event is fired if old and new values are equal and non-null.
286 * No event is fired if old and new values are equal.
314 * No event is fired if old and new values are equal.
332 * Fires a property change event to listeners
342 * No event is fired if the given event's old and new values are equal and non-null.
344 * @param event the {@code PropertyChangeEvent} to be fired
347 public void fireVetoableChange(PropertyChangeEvent event) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOReadUpdateListener.java26 package javax.imageio.event;
/openjdk7/jdk/src/share/classes/javax/naming/event/
H A DNamingEvent.java26 package javax.naming.event;
31 * This class represents an event fired by a naming/directory service.
35 * <li>The event source: the <tt>EventContext</tt> which fired this event.
36 * <li>The event type.
40 * that triggered this event; usually service provider-specific or server-specific
44 * Note that the event source is always the same <tt>EventContext</tt>
75 * Naming event type for indicating that a new object has been added.
81 * Naming event type for indicating that an object has been removed.
87 * Naming event typ
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventSupport.java35 import javax.naming.event.*;
43 * event notification. You can use an instance of this class as a member field
72 *notification, it notifies this EventSupport to fire an event to the
97 *information to generate an event, it creates invokes the
99 *listeners. This causes an event and the list of listeners to be added
100 *to the <em>event queue</em>.
101 *This class maintains an event queue and a dispatching thread that dequeues
258 * Fire an event to unsolicited listeners.
270 // before a fired event event reache
331 queueEvent(EventObject event, Vector vector) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractLine.java54 * Contains event dispatcher per thread group.
189 final void sendEvents(LineEvent event) { argument
190 getEventDispatcher().sendAudioEvents(event, listeners);
221 // create and start the global event thread
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEventNotifier.java37 import com.sun.jdi.event.*;
58 void receivedEvent(Event event); argument
H A DEventRequestSpec.java41 import com.sun.jdi.event.ClassPrepareEvent;
68 synchronized EventRequest resolve(ClassPrepareEvent event) throws Exception { argument
71 prepareRequest.equals(event.request())) {
73 resolved = resolveEventRequest(event.referenceType());
82 * Class pattern event requests are never
153 * Class pattern event requests are never
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DActionEvent.java26 package java.awt.event;
32 * A semantic event which indicates that a component-defined action occurred.
33 * This high-level event is generated by a component (such as a
36 * The event is passed to every <code>ActionListener</code> object
44 * gets this <code>ActionEvent</code> when the event occurs. The listener
47 * event like "button pressed".
63 * down during the event.
69 * down during the event.
75 * down during the event.
81 * down during the event
[all...]
H A DAdjustmentEvent.java26 package java.awt.event;
32 * The adjustment event emitted by Adjustable objects like
60 * Marks the first integer id for the range of adjustment event ids.
65 * Marks the last integer id for the range of adjustment event ids.
70 * The adjustment value changed event.
100 * The adjustable object that fired the event.
131 * The <code>isAdjusting</code> is true if the event is one
149 * specified <code>Adjustable</code> source, event type,
156 * event originated
157 * @param id An integer indicating the type of event
[all...]
H A DHierarchyEvent.java26 package java.awt.event;
33 * An event which indicates a change to the <code>Component</code>
57 * This event is generated by a Container object (such as a Panel) when the
71 * </code> when the event occurs.
99 * Marks the first integer id for the range of hierarchy event ids.
104 * The event id indicating that modification was made to the
110 * The event id indicating an ancestor-Container was moved.
115 * The event id indicating an ancestor-Container was resized.
120 * Marks the last integer id for the range of ancestor event ids.
125 * A change flag indicates that the <code>HIERARCHY_CHANGED</code> event
[all...]
H A DInputMethodEvent.java26 package java.awt.event;
40 * input method sends an event. If the text component that's currently
41 * using the input method is an active client, the event is dispatched
46 * The text included with the input method event consists of two parts:
67 * Marks the first integer id for the range of input method event ids.
72 * The event type indicating changed input method text. This event is
78 * The event type indicating a changed insertion point in input method text.
79 * This event is
85 * Marks the last integer id for the range of input method event id
[all...]
H A DInvocationEvent.java26 package java.awt.event;
32 * An event which executes the <code>run()</code> method on a <code>Runnable
33 * </code> when dispatched by the AWT event dispatcher thread. This class can
60 * Marks the first integer id for the range of invocation event ids.
70 * Marks the last integer id for the range of invocation event ids.
118 * The timestamp of when this event occurred.
141 * @param source The <code>Object</code> that originated the event
167 * the event
202 * the event
203 * @param id An integer indicating the type of event
[all...]
H A DMouseWheelEvent.java26 package java.awt.event;
31 * An event which indicates that the mouse wheel was rotated in a component.
40 * object gets a <code>MouseEvent</code> containing the mouse event.
53 * Component, the event is delivered to the first ancestor
56 * Component and x,y coordinates will be relative to the event's
66 * moved over one of these Components, the event is delivered straight to
120 * event, based on platform settings. Legal values are:
172 * the event
173 * @param id the integer that identifies the event
174 * @param when a long that gives the time the event occurre
[all...]
H A DWindowEvent.java26 package java.awt.event;
33 * A low-level event that indicates that a window has changed its status. This
34 * low-level event is generated by a Window object when it is opened, closed,
38 * The event is passed to every <code>WindowListener</code>
43 * gets this <code>WindowEvent</code> when the event occurs.
66 * The window opened event. This event is delivered only
72 * The "window is closing" event. This event is delivered when
75 * while processing this event, th
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A D_AppEventLegacyHandler.java55 throw new IllegalStateException("Cannot add com.apple.eawt.ApplicationListener after installing an app event handler");
181 // helper that cycles through the loop and aborts if the event is handled, or there are no listeners
182 void sendEventToEachListenerUntilHandled(final ApplicationEvent event, final EventDispatcher dispatcher) { argument
187 while (e.hasMoreElements() && !event.isHandled()) {

Completed in 505 milliseconds

<<11121314151617181920