Searched defs:event (Results 201 - 225 of 476) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/com/sun/jdi/
H A DVMDeathRequestTest.java42 import com.sun.jdi.event.*;
66 /********** event handlers **********/
72 public void vmDied(VMDeathEvent event) { argument
73 if (event.request() == deathRequest) {
80 } else if (event.request() == null) {
88 public void vmDisconnected(VMDisconnectEvent event) { argument
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4072197.java31 import java.awt.event.ActionListener;
43 new String[] {"action", "event", null, "dummy"},
64 public void action(EventObject event) { argument
67 public void event(EventObject event) { argument
70 public void dummy(EventObject event) { argument
H A DTest6311051.java65 void fooHappened(EventObject event); argument
67 void moreFooHappened(EventObject event, Object data); argument
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestEquals.java47 PropertyChangeEvent event = new PropertyChangeEvent(source, PROPERTY, one, two);
48 pcs.firePropertyChange(event);
82 public void propertyChange(PropertyChangeEvent event) { argument
H A DTestListeners.java97 public void propertyChange(PropertyChangeEvent event) { argument
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestEquals.java48 PropertyChangeEvent event = new PropertyChangeEvent(source, PROPERTY, one, two);
49 vcs.fireVetoableChange(event);
81 public void vetoableChange(PropertyChangeEvent event) { argument
H A DTestListeners.java98 public void vetoableChange(PropertyChangeEvent event) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DHandler.java177 public void handshakeCompleted (HandshakeCompletedEvent event) argument
180 Socket sock = (Socket) event.getSource ();
186 + ", " + event.getCipherSuite ());
/openjdk7/langtools/test/tools/apt/Compile/
H A DRound1Apf.java98 public void roundComplete(RoundCompleteEvent event) { argument
99 RoundState rs = event.getRoundState();
101 if (event.getSource() != this.env)
H A DRound4Apf.java86 public void roundComplete(RoundCompleteEvent event) { argument
87 RoundState rs = event.getRoundState();
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/event/
H A DVmStatusChangeEvent.java26 package sun.jvmstat.monitor.event;
50 * previous event. The set contains an Integer object holding the
58 * previous event. The set contains an Integer object holding the
67 * @param host the MonitoredHost that is the source of the event.
70 * last event.
72 * the last event.
98 * event notification. The set contains an Integer object holding
100 * MonitoredHost since the last event notification.
113 * event notification. The set contains an Integer object holding
115 * MonitoredHost since the last event notificatio
[all...]
/openjdk7/jdk/src/share/sample/nio/file/
H A DWatchDir.java59 static <T> WatchEvent<T> cast(WatchEvent<?> event) { argument
60 return (WatchEvent<T>)event;
123 for (WatchEvent<?> event: key.pollEvents()) {
124 WatchEvent.Kind kind = event.kind();
126 // TBD - provide example of how OVERFLOW event is handled
131 // Context for directory entry event is the file name of entry
132 WatchEvent<Path> ev = cast(event);
136 // print out event
137 System.out.format("%s: %s\n", event.kind().name(), child);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMSelectionListener.java53 public void selectionChanged(int screen, XMSelection sel, long owner, XPropertyEvent event); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerProcessor.java41 // The start element event
44 // The end element event
47 // The empty element event
71 * @param event - An integer indicating
80 Augmentations augs, int event) throws XNIException;
79 resolveXPointer(QName element, XMLAttributes attributes, Augmentations augs, int event) argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DXMLEventAllocatorImpl.java70 XMLEvent event = null;
71 //returns the current event
86 event = startElementEvent ;
96 event = endElementEvent ;
102 event = piEvent ;
108 event = cDataEvent ;
114 event = commentEvent ;
128 event = sdEvent ;
134 event = endDocumentEvent ;
140 event
181 fillAttributes(StartElementEvent event,XMLStreamReader xmlr) argument
213 fillNamespaceAttributes(StartElementEvent event,XMLStreamReader xmlr) argument
229 fillNamespaceAttributes(EndElementEvent event,XMLStreamReader xmlr) argument
[all...]
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLEventWriter.java67 * Add an event to the output stream
90 * namespaces, and attributes of the event in XML 1.0 valid
170 * <td> A START_DOCUMENT event is not required to be written to the
189 * @param event the event to be added
192 public void add(XMLEvent event) throws XMLStreamException; argument
199 * event reader and call add on each event.
201 * @param reader the event stream to add to the output
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DTrack.java54 * the event list in the correct time order. Methods are also
79 * which initially contains one event, the meta-event End of Track.
82 // start with the end of track event
90 * Adds a new event to the track. However, if the event is already
92 * is kept in time order, meaning that this event inserted at the
95 * @param event the event to add
96 * @return <code>true</code> if the event di
99 add(MidiEvent event) argument
186 remove(MidiEvent event) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAutoscroller.java29 import java.awt.event.*;
49 private static MouseEvent event; field in class:Autoscroller
71 * Invoked when a mouse dragged event occurs, will start the autoscroller
92 event = new MouseEvent(component, e.getID(), e.getWhen(),
122 event = null;
162 if (component == null || !component.isShowing() || (event == null)) {
167 MouseEvent e = new MouseEvent(component, event.getID(),
168 event.getWhen(), event.getModifiers(),
169 event
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DValueFormatter.java28 import java.awt.event.FocusEvent;
29 import java.awt.event.FocusListener;
120 public void focusGained(FocusEvent event) { argument
121 Object source = event.getSource();
128 public void focusLost(FocusEvent event) { argument
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DEventListenerList.java25 package javax.swing.event;
36 * to the JavaBeans spec) and methods which dispatch event notification
41 * event-listener lists in a single place, as well as a degree of MT safety
63 * // notification on this event type. The event instance
71 * // those that are interested in this event
74 * // Lazily create the event:
106 * Passes back the event listener list as an array
251 // Save the non-null event listeners:
H A DInternalFrameEvent.java25 package javax.swing.event;
32 * <code>JInternalFrame</code> objects as the event source. This class has the
33 * same event types as <code>WindowEvent</code>,
49 * @see java.awt.event.WindowEvent
50 * @see java.awt.event.WindowListener
69 * The "window opened" event. This event is delivered only
77 * The "window is closing" event. This event is delivered when
90 * The "window closed" event
[all...]
H A DMenuDragMouseEvent.java25 package javax.swing.event;
30 import java.awt.event.MouseEvent;
59 * @param source the Component that originated the event
61 * @param id an int specifying the type of event, as defined
62 * in {@link java.awt.event.MouseEvent}
63 * @param when a long identifying the time the event occurred
65 * as specified in {@link java.awt.event.InputEvent}
67 * the event occurred, in pixels
69 * the event occurred, in pixels
71 * @param popupTrigger a boolean -- true if the event {shoul
[all...]
H A DTableModelEvent.java26 package javax.swing.event;
33 * has changed. The model event describes changes to a TableModel
51 * whether the event WILL happen or DID happen. This makes the specification
53 * the swing package as the JTable only needs post-event notification.
101 * receiving this event, querying the model for the cell values that are visible.
114 * When the <code>JTable</code> receives this event and its
168 * Returns the column for the event. If the return
175 * Returns the type of event - one of: INSERT, UPDATE and DELETE.
H A DTreeSelectionEvent.java26 package javax.swing.event;
32 * An event that characterizes a change in the current
35 * the event for the new selected status of each potentially
54 /** Paths this event represents. */
68 * @param source source of event
87 * @param source source of event
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletProps.java214 public boolean action(Event event, Object object) { argument

Completed in 64 milliseconds

1234567891011>>