Lines Matching defs:id

4691         int id = e.getID();
4745 if (id == MouseEvent.MOUSE_WHEEL &&
4746 (!eventTypeEnabled(id)) &&
4806 if (id == FocusEvent.FOCUS_GAINED) {
4818 switch(id) {
4863 } else if (id == MouseEvent.MOUSE_WHEEL) {
4884 switch(olde.id) {
4906 if (id == WindowEvent.WINDOW_CLOSING && !e.isConsumed()) {
5048 return eventTypeEnabled(e.id);
5510 int createHierarchyEvents(int id, Component changed,
5513 switch (id) {
5518 HierarchyEvent e = new HierarchyEvent(this, id, changed,
5535 HierarchyEvent e = new HierarchyEvent(this, id, changed,
6328 int id = e.getID();
6329 switch(id) {
6391 int id = e.getID();
6392 switch(id) {
6457 int id = e.getID();
6458 switch(id) {
6499 int id = e.getID();
6500 switch(id) {
6547 int id = e.getID();
6548 switch(id) {
6590 int id = e.getID();
6591 switch(id) {
6630 int id = e.getID();
6631 switch (id) {
6669 int id = e.getID();
6670 switch (id) {
6705 int id = e.getID();
6706 switch (id) {
6723 switch (evt.id) {
7168 * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
7176 * @throws IllegalArgumentException if id is not one of
7188 public void setFocusTraversalKeys(int id,
7191 if (id < 0 || id >= KeyboardFocusManager.TRAVERSAL_KEY_LENGTH - 1) {
7195 setFocusTraversalKeys_NoIDCheck(id, keystrokes);
7208 * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
7218 * @throws IllegalArgumentException if id is not one of
7224 public Set<AWTKeyStroke> getFocusTraversalKeys(int id) {
7225 if (id < 0 || id >= KeyboardFocusManager.TRAVERSAL_KEY_LENGTH - 1) {
7229 return getFocusTraversalKeys_NoIDCheck(id);
7237 final void setFocusTraversalKeys_NoIDCheck(int id, Set<? extends AWTKeyStroke> keystrokes) {
7265 if (i == id) {
7277 oldKeys = focusTraversalKeys[id];
7278 focusTraversalKeys[id] = (keystrokes != null)
7283 firePropertyChange(focusTraversalKeyPropertyNames[id], oldKeys,
7286 final Set getFocusTraversalKeys_NoIDCheck(int id) {
7289 ? focusTraversalKeys[id]
7297 return parent.getFocusTraversalKeys(id);
7300 getDefaultFocusTraversalKeys(id);
7311 * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
7317 * @throws IllegalArgumentException if id is not one of
7323 public boolean areFocusTraversalKeysSet(int id) {
7324 if (id < 0 || id >= KeyboardFocusManager.TRAVERSAL_KEY_LENGTH - 1) {
7328 return (focusTraversalKeys != null && focusTraversalKeys[id] != null);