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