Searched defs:Event (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DEvent.java32 * An occurrence in a target VM that is of interest to a debugger. Event is
36 * When an event occurs, an instance of Event as a component of
46 public interface Event extends Mirror { interface in inherits:Mirror
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DEvent.java31 class Event { class
35 protected Event (ExchangeImpl t) { method in class:Event
40 class WriteFinishedEvent extends Event {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DEvent.java27 public class Event { class
36 public Event(Type type) { method in class:Event
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DEvent.java33 public abstract class Event<L> { class
37 public Event() { method in class:Event
/openjdk7/jaxp/src/org/w3c/dom/events/
H A DEvent.java45 * The <code>Event</code> interface is used to provide contextual information
47 * implements the <code>Event</code> interface is generally passed as the
50 * <code>Event</code> which contain information directly relating to the
56 public interface Event { interface
145 * <code>Event</code> created through the <code>DocumentEvent</code>
147 * <code>Event</code> has been dispatched via the
151 * <code>Event</code> interface only the values specified in the
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractWatchKey.java45 static final Event<Object> OVERFLOW_EVENT =
46 new Event<Object>(StandardWatchEventKinds.OVERFLOW, null);
117 ((Event<?>)prev).increment();
128 ((Event<?>)ev).increment();
148 Event<Object> ev =
149 new Event<Object>((WatchEvent.Kind<Object>)kind, context);
190 private static class Event<T> implements WatchEvent<T> { class in class:AbstractWatchKey
197 Event(WatchEvent.Kind<T> type, T context) { method in class:AbstractWatchKey.Event
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPollPort.java64 static class Event { class in class:EPollPort
68 Event(PollableChannel channel, int events) { method in class:EPollPort.Event
79 private final ArrayBlockingQueue<Event> queue;
80 private final Event NEED_TO_POLL = new Event(null, 0);
81 private final Event EXECUTE_TASK_OR_SHUTDOWN = new Event(null, 0);
108 this.queue = new ArrayBlockingQueue<Event>(MAX_EPOLL_EVENTS);
191 private Event poll() throws IOException {
226 Event e
[all...]
H A DKQueuePort.java61 static class Event { class in class:KQueuePort
65 Event(PollableChannel channel, int events) { method in class:KQueuePort.Event
76 private final ArrayBlockingQueue<Event> queue;
77 private final Event NEED_TO_POLL = new Event(null, 0);
78 private final Event EXECUTE_TASK_OR_SHUTDOWN = new Event(null, 0);
106 this.queue = new ArrayBlockingQueue<Event>(MAX_KEVENTS_TO_POLL);
193 private Event poll() throws IOException {
234 Event e
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionRemSet.hpp186 enum Event { enum in class:HeapRegionRemSet
209 static Event* _recorded_events;
213 static void print_event(outputStream* str, Event evnt);
334 static void record_event(Event evnt);
/openjdk7/jdk/src/share/classes/java/awt/
H A DEvent.java31 * <b>NOTE:</b> The <code>Event</code> class is obsolete and is
35 * <code>Event</code> is a platform-independent class that
38 * and later versions, the <code>Event</code> class is maintained
44 * {@link Event#id} field
46 * <code>Event</code> variables are relevant for the event.
48 * For keyboard events, {@link Event#key}
50 * {@link Event#modifiers} contains the
56 * <code>Event</code> class (<code>PGUP</code>,
62 public class Event implements java.io.Serializable { class in inherits:java.io.Serializable
322 * @see java.awt.Event#ALT_MAS
628 public Event(Object target, long when, int id, int x, int y, int key, method in class:Event
678 public Event(Object target, long when, int id, int x, int y, int key, int modifiers) { method in class:Event
693 public Event(Object target, int id, Object arg) { method in class:Event
[all...]

Completed in 66 milliseconds