模块  java.desktop
软件包  java.awt.event

Class ComponentEvent

  • 实现的所有接口
    Serializable
    已知直接子类:
    ContainerEventFocusEventInputEventPaintEventWindowEvent

    public class ComponentEvent
    extends AWTEvent
    一个低级事件,指示组件移动,更改大小或更改可见性(也是其他组件级事件的根类)。

    组件事件仅用于通知目的; AWT将自动处理组件移动并在内部调整大小,以便GUI布局正常工作,无论程序是否正在接收这些事件。

    除了作为其他与组件相关的事件(InputEvent,FocusEvent,WindowEvent,ContainerEvent)的基类之外,此类还定义了指示组件大小,位置或可见性更改的事件。

    当组件移动,调整大小,呈现不可见或再次可见时,此组件对象(如List)会生成此低级事件。 该事件将传递给每个注册为使用组件的addComponentListener方法接收此类事件的ComponentListenerComponentAdapter对象。 ComponentAdapter对象实现了ComponentListener接口。)每个此类侦听器对象在事件发生时获取此ComponentEvent

    如果任何特定ComponentEvent实例的id参数不在COMPONENT_FIRSTCOMPONENT_LAST的范围内, COMPONENT_FIRST导致未指定的行为。

    从以下版本开始:
    1.1
    另请参见:
    ComponentAdapterComponentListenerTutorial: Writing a Component ListenerSerialized Form
    • 字段详细信息

      • COMPONENT_FIRST

        public static final int COMPONENT_FIRST
        用于组件事件的id范围中的第一个数字。
        另请参见:
        常数字段值
      • COMPONENT_LAST

        public static final int COMPONENT_LAST
        用于组件事件的id范围中的最后一个数字。
        另请参见:
        常数字段值
      • COMPONENT_MOVED

        @Native
        public static final int COMPONENT_MOVED
        此事件表示组件的位置已更改。
        另请参见:
        常数字段值
      • COMPONENT_RESIZED

        @Native
        public static final int COMPONENT_RESIZED
        此事件表示组件的大小已更改。
        另请参见:
        常数字段值
      • COMPONENT_SHOWN

        @Native
        public static final int COMPONENT_SHOWN
        此事件表示该组件已可见。
        另请参见:
        常数字段值
      • COMPONENT_HIDDEN

        @Native
        public static final int COMPONENT_HIDDEN
        此事件表示组件呈现为不可见。
        另请参见:
        常数字段值
    • 构造方法详细信息

      • ComponentEvent

        public ComponentEvent​(Component source,
                              int id)
        构造一个ComponentEvent对象。

        此方法抛出IllegalArgumentException如果sourcenull

        参数
        source - 发起此事件的 Component
        id - 指示事件类型的整数。 有关允许值的信息,请参阅ComponentEvent的类说明
        异常
        IllegalArgumentException - 如果 source为空
        另请参见:
        getComponent()AWTEvent.getID()
    • 方法详细信息

      • getComponent

        public Component getComponent()
        返回事件的发起者。
        结果
        所述 Component对象发起事件,或 null如果对象不是 Component
      • paramString

        public String paramString()
        返回标识此事件的参数字符串。 此方法对于事件记录和调试很有用。
        重写:
        paramString在课程 AWTEvent
        结果
        标识事件及其属性的字符串