ghostdropadapter.java

来自「Java GUI Java GUIJava GUIJava GUIJava GU」· Java 代码 · 共 35 行

JAVA
35
字号
import java.awt.event.MouseAdapter;import java.util.ArrayList;import java.util.List;import java.util.Iterator;public class GhostDropAdapter extends MouseAdapter {    protected GhostGlassPane glassPane;	protected String action;	private List listeners;    public GhostDropAdapter(GhostGlassPane glassPane, String action) {        this.glassPane = glassPane;        this.action = action;        this.listeners = new ArrayList();    }    public void addGhostDropListener(GhostDropListener listener) {        if (listener != null)            listeners.add(listener);    }    public void removeGhostDropListener(GhostDropListener listener) {        if (listener != null)            listeners.remove(listener);    }    protected void fireGhostDropEvent(GhostDropEvent evt) {        Iterator it = listeners.iterator();        while (it.hasNext()) {        	((GhostDropListener) it.next()).ghostDropped(evt);        }    }}

⌨️ 快捷键说明

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