SWING PaintEvent事件類
paintEvent類的使用,以確保繪畫/ update方法的調用序列與其他事件從事件隊列交付
類聲明
以下是聲明 java.awt.event.PaintEvent類:
public class PaintEvent extends ComponentEvent
字段域
以下是java.awt.Component類的字段:
static int PAINT -- 繪畫 事件類型。
static int PAINT_FIRST -- 標誌着第一個整數標識符繪畫的事件ID的範圍。
static int PAINT_LAST -- 標記繪畫事件的id範圍的最後一個整數ID。
static int UPDATE -- 更新事件類型。
類構造函數
S.N.
構造函數 & 描述
1
PaintEvent(Component source, int id, Rectangle updateRect)
Constructs a PaintEvent object with the specified source component and type.
類方法
S.N.
方法 & 描述
1
Rectangle getUpdateRect()
Returns the rectangle representing the area which needs to be repainted in response to this event.
2
String paramString()
Returns a parameter string identifying this event.
3
void setUpdateRect(Rectangle updateRect)
Sets the rectangle representing the area which needs to be repainted in response to this event.
方法繼承
這個類從以下類繼承的方法:
java.awt.ComponentEvent
java.awt.AWTEvent
java.util.EventObject
java.lang.Object