2

如何以最少的代码丑化在 Swing 程序中编写调试钩子,它会告诉我层次结构中的哪个组件实际处理每个按键或鼠标单击并执行在组件的操作映射中映射到它的操作?我们正在编写一个复杂的 GUI,了解这些信息将非常有用。

4

2 回答 2

0

可以使用 AspectJ 将日志方面编织到您的代码库中。actionPerformed(ActionEvent)下面是使用代码库中的方法执行任何对象时关于连接点的建议示例。类似的结构可用于建议其他听众。

下面是建议按钮按下和其他具有 ActionListeners 的组件的方面。它只是输出动作源的类名和 actionPerformed 方法的签名。

import java.awt.event.ActionEvent;

import org.aspectj.lang.Signature;

public aspect Logger {
  before(ActionEvent e) : execution(* *.actionPerformed(ActionEvent)) && args(e) {
    Signature sig = thisJoinPoint.getSignature();
    System.out.println(e.getSource().getClass() + " lead to " + sig);
  }
}

一个测试类,它产生两个不同类的按钮(在文件 StackTraceExample.java 中):

import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;

class MyButton extends JButton {
  public MyButton(String string) {
    super(string);
  }
}

class MyOtherButton extends JButton {
  public MyOtherButton(String string) {
    super(string);
  }
}

class ButtonStackDisplay implements ActionListener {
  private final JTextArea stackTraceText;

  ButtonStackDisplay(JTextArea textArea) {
    this.stackTraceText = textArea;
  }

  public void actionPerformed(ActionEvent e) {
    String endl = System.getProperty("line.separator");
    StringBuilder b = new StringBuilder();

    // you can see the source of the event 
    b.append(e.getSource()).append(endl).append(endl);

    // the stack trace shows that events don't propagate through the components
    // originating them, but instead processed in a different thread
    for (StackTraceElement se : new Throwable().getStackTrace()) {
      b.append(se.toString());
      b.append(endl);
    }
    stackTraceText.setText(b.toString());
  }
}

public class StackTraceExample {
  public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        f.setLayout(new BorderLayout());
        JPanel top = new JPanel();
        JButton button = new MyButton("Stack Trace");
        top.setLayout(new GridLayout(2, 1));
        top.add(button);
        JButton otherButton = new MyOtherButton("Stack Trace");
        top.add(otherButton);
        f.getContentPane().add(top, BorderLayout.NORTH);
        JTextArea stackTraceText = new JTextArea();
        f.add(stackTraceText, BorderLayout.CENTER);
        ButtonStackDisplay bsd = new ButtonStackDisplay(stackTraceText);
        button.addActionListener(bsd);
        otherButton.addActionListener(bsd);
        f.setSize(400, 400);
        f.setLocationRelativeTo(null);
        f.setVisible(true);
        f.toFront();
      }
    });
  }
}
于 2011-06-28T03:27:20.367 回答
0

放入自定义事件调度程序: http: //tips4java.wordpress.com/2009/09/06/global-event-dispatching/

还要在 API 文档中查找 AWTEvent.getID()、MouseEvent、KeyEvent。

这就是我使用的软件监控鼠标和键盘的方式,以查看用户是否正忙于工作,如果不是,则锁定窗口。

于 2011-06-23T20:59:28.653 回答