tableselectionlistener.java

来自「使用swing做的熟悉控件使用的DEMO」· Java 代码 · 共 13 行

JAVA
13
字号
import java.util.EventListener;

/**
  * The listener that's notified when a table selection value changes.
  * @author Jan-Friedrich Mutter (jmutter@bigfoot.de)
  */
public interface TableSelectionListener extends EventListener {
  /**
  * Called whenever the value of the selection changes.
  */
  public void valueChanged(TableSelectionEvent e);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?