📄 awteventmulticaster.java
字号:
((WindowListener) b).windowOpened(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void windowClosing(WindowEvent e) { ((WindowListener) a).windowClosing(e); ((WindowListener) b).windowClosing(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void windowClosed(WindowEvent e) { ((WindowListener) a).windowClosed(e); ((WindowListener) b).windowClosed(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void windowIconified(WindowEvent e) { ((WindowListener) a).windowIconified(e); ((WindowListener) b).windowIconified(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void windowDeiconified(WindowEvent e) { ((WindowListener) a).windowDeiconified(e); ((WindowListener) b).windowDeiconified(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void windowActivated(WindowEvent e) { ((WindowListener) a).windowActivated(e); ((WindowListener) b).windowActivated(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void windowDeactivated(WindowEvent e) { ((WindowListener) a).windowDeactivated(e); ((WindowListener) b).windowDeactivated(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.4 */ public void windowStateChanged(WindowEvent e) { ((WindowStateListener) a).windowStateChanged(e); ((WindowStateListener) b).windowStateChanged(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.4 */ public void windowGainedFocus(WindowEvent e) { ((WindowFocusListener) a).windowGainedFocus(e); ((WindowFocusListener) b).windowGainedFocus(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.4 */ public void windowLostFocus(WindowEvent e) { ((WindowFocusListener) a).windowLostFocus(e); ((WindowFocusListener) b).windowLostFocus(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void actionPerformed(ActionEvent e) { ((ActionListener) a).actionPerformed(e); ((ActionListener) b).actionPerformed(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void itemStateChanged(ItemEvent e) { ((ItemListener) a).itemStateChanged(e); ((ItemListener) b).itemStateChanged(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void adjustmentValueChanged(AdjustmentEvent e) { ((AdjustmentListener) a).adjustmentValueChanged(e); ((AdjustmentListener) b).adjustmentValueChanged(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle */ public void textValueChanged(TextEvent e) { ((TextListener) a).textValueChanged(e); ((TextListener) b).textValueChanged(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.2 */ public void inputMethodTextChanged(InputMethodEvent e) { ((InputMethodListener) a).inputMethodTextChanged(e); ((InputMethodListener) b).inputMethodTextChanged(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.2 */ public void caretPositionChanged(InputMethodEvent e) { ((InputMethodListener) a).caretPositionChanged(e); ((InputMethodListener) b).caretPositionChanged(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.3 */ public void hierarchyChanged(HierarchyEvent e) { ((HierarchyListener) a).hierarchyChanged(e); ((HierarchyListener) b).hierarchyChanged(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.3 */ public void ancestorMoved(HierarchyEvent e) { ((HierarchyBoundsListener) a).ancestorMoved(e); ((HierarchyBoundsListener) b).ancestorMoved(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.3 */ public void ancestorResized(HierarchyEvent e) { ((HierarchyBoundsListener) a).ancestorResized(e); ((HierarchyBoundsListener) b).ancestorResized(e); } /** * Handles this event by dispatching it to the "a" and "b" listener * instances. * * @param event the event to handle * @since 1.4 */ public void mouseWheelMoved(MouseWheelEvent e) { ((MouseWheelListener) a).mouseWheelMoved(e); ((MouseWheelListener) b).mouseWheelMoved(e); } /** * Chain <code>ComponentListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static ComponentListener add(ComponentListener a, ComponentListener b) { return (ComponentListener) addInternal(a, b); } /** * Chain <code>ContainerListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static ContainerListener add(ContainerListener a, ContainerListener b) { return (ContainerListener) addInternal(a, b); } /** * Chain <code>FocusListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static FocusListener add(FocusListener a, FocusListener b) { return (FocusListener) addInternal(a, b); } /** * Chain <code>KeyListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static KeyListener add(KeyListener a, KeyListener b) { return (KeyListener) addInternal(a, b); } /** * Chain <code>MouseListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static MouseListener add(MouseListener a, MouseListener b) { return (MouseListener) addInternal(a, b); } /** * Chain <code>MouseMotionListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static MouseMotionListener add(MouseMotionListener a, MouseMotionListener b) { return (MouseMotionListener) addInternal(a, b); } /** * Chain <code>WindowListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static WindowListener add(WindowListener a, WindowListener b) { return (WindowListener) addInternal(a, b); } /** * Chain <code>WindowStateListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain * @since 1.4 */ public static WindowStateListener add(WindowStateListener a, WindowStateListener b) { return (WindowStateListener) addInternal(a, b); } /** * Chain <code>WindowFocusListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain * @since 1.4 */ public static WindowFocusListener add(WindowFocusListener a, WindowFocusListener b) { return (WindowFocusListener) addInternal(a, b); } /** * Chain <code>ActionListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static ActionListener add(ActionListener a, ActionListener b) { return (ActionListener) addInternal(a, b); } /** * Chain <code>ItemListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static ItemListener add(ItemListener a, ItemListener b) { return (ItemListener) addInternal(a, b); } /** * Chain <code>AdjustmentListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static AdjustmentListener add(AdjustmentListener a, AdjustmentListener b) { return (AdjustmentListener) addInternal(a, b); } /** * Chain <code>AdjustmentListener</code> a and b. * * @param a the "a" listener, may be null * @param b the "b" listener, may be null * @return latest entry in the chain */ public static TextListener add(TextListener a, TextListener b) { return (TextListener) addInternal(a, b); } /** * Chain <code>InputMethodListener</code> a and b.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -