weasis事件机制分析

来源:互联网 发布:迷宫生成算法 递归 编辑:程序博客网 时间:2024/05/17 08:18

在weasis中有一个事件监听器基类MouseActionAdapter,位于package org.weasis.core.api.gui.util

它实现了java 事件中常用的监听器接口MouseListener, MouseWheelListener, MouseMotionListener,但它都没有实现相应的事件方法,具体实现在其子类中

它有两个最重要的子类都位于org.weasis.core.ui.editor.image.DefaultView2d

一个是MouseHandler

另一个是FocusHandler,它是默认的监听器


待验证java 中组件添加多个ActionListener会不会都触发

addActionListener

ActionListener leftButtonAction = new ActionListener() {

                    @Override
                    public void actionPerformed(ActionEvent e) {
                        if (e.getSource() instanceof JRadioButtonMenuItem) {
                            JRadioButtonMenuItem item = (JRadioButtonMenuItem) e.getSource();
                            toolBar.changeButtonState(MouseActions.LEFT, item.getActionCommand());
                        }
                    }
                };

0 0
原创粉丝点击