-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentListener.java
More file actions
74 lines (68 loc) · 1.92 KB
/
ComponentListener.java
File metadata and controls
74 lines (68 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.awt.event;
import java.util.EventListener;
/**
* The listener interface for receiving component events.
* The class that is interested in processing a component event
* either implements this interface (and all the methods it
* contains) or extends the abstract <code>ComponentAdapter</code> class
* (overriding only the methods of interest).
* The listener object created from that class is then registered with a
* component using the component's <code>addComponentListener</code>
* method. When the component's size, location, or visibility
* changes, the relevant method in the listener object is invoked,
* and the <code>ComponentEvent</code> is passed to it.
* <P>
* Component events are provided for notification purposes ONLY;
* The AWT will automatically handle component moves and resizes
* internally so that GUI layout works properly regardless of
* whether a program registers a <code>ComponentListener</code> or not.
*
* @see ComponentAdapter
* @see ComponentEvent
* @see <a href="http://docs.oracle.com/javase/tutorial/uiswing/events/componentlistener.html">Tutorial: Writing a Component Listener</a>
*
* @author Carl Quinn
* @since 1.1
*/
public interface ComponentListener extends EventListener {
/**
* Invoked when the component's size changes.
*/
public void componentResized(ComponentEvent e);
/**
* Invoked when the component's position changes.
*/
public void componentMoved(ComponentEvent e);
/**
* Invoked when the component has been made visible.
*/
public void componentShown(ComponentEvent e);
/**
* Invoked when the component has been made invisible.
*/
public void componentHidden(ComponentEvent e);
}