?? hoverpainter.java
字號(hào):
/*
* LayoutPainter.java
*
* Created on 2007-8-2, 15:41:27
*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package dyno.swing.designer.beans;
import java.awt.Component;
import java.awt.Point;
/**
* 渲染器,目的是為組件或者布局管理器提供額外的渲染入口。
*
* @author William Chen
*/
public interface HoverPainter extends Painter{
//當(dāng)前焦點(diǎn)熱點(diǎn),即鼠標(biāo)所在點(diǎn)
void setHotspot(Point p);
//當(dāng)前要放置的組件
void setComponent(Component component);
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -