位置:首页 > Java技术 > AWT > AWT PaintEvent类

AWT PaintEvent类

介绍

类的paintEvent使用,以确保paint/update方法的调用序列与其他事件从事件队列传递

类的声明

以下是声明的java.awt.event.PaintEvent类:

public class PaintEvent
   extends ComponentEvent

字段域

以下是java.awt.Component 类的字段:

  • static int PAINT -- 事件类型。

  • static int PAINT_FIRST -- 标志着第一个整数标识符paint 的事件ID的范围

  • static int PAINT_LAST -- 标记paint 事件的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