📄 ghostdropadapter.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -