位置:首頁 > Java技術 > Swing > SWING ComponentEvent處理類

SWING ComponentEvent處理類

ComponentEvent 類表示,組件被移動,改變大小,更改或可見性

類聲明

以下是聲明 java.awt.event.ComponentEvent類:

public class ComponentEvent
   extends AWTEvent

字段域

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

  • static int COMPONENT_FIRST -- 第一個數字範圍內用於組件事件的ID。

  • static int COMPONENT_HIDDEN --第一個數字範圍內用於組件事件的ID。

  • static int COMPONENT_LAST -- 最後一個數字範圍內用於組件事件的ID。

  • static int COMPONENT_MOVED -- 此事件表明,組件的位置改變。

  • static int COMPONENT_RESIZED -- 此事件表明,組件的大小改變。

  • static int COMPONENT_SHOWN -- 此事件表示該組件可見。

類構造函數

S.N. 構造函數 & 描述
1 ComponentEvent(Component source, int id) 
Constructs a ComponentEvent object.

類方法

S.N. 方法 & 描述
1 Component getComponent() 
Returns the originator of the event.
2 String paramString() 
Returns a parameter string identifying this event.

方法繼承

這個接口繼承的方法從以下類:

  • java.awt.AWTEvent

  • java.util.EventObject

  • java.lang.Object