Home | History | Annotate | Download | only in simulator

Lines Matching defs:Event

85   /** Information about a connection event. */
86 public static class Event {
87 /** The type of connection event. */
129 /** Holds event specific information. For example, for DTMF this could be the keycode. */
132 * Holds event specific information. For example, for STATE_CHANGE this could be the new state.
136 public Event(@Type int type) {
140 public Event(@Type int type, String data1, String data2) {
151 if (!(other instanceof Event)) {
154 Event event = (Event) other;
155 return type == event.type
156 && Objects.equals(data1, event.data1)
157 && Objects.equals(data2, event.data2);