KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > java > swing > plaf > windows > WindowsButtonListener


1 /*
2  * @(#)WindowsButtonListener.java 1.16 06/08/25
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7  
8
9 package com.sun.java.swing.plaf.windows;
10
11 import java.beans.PropertyChangeEvent JavaDoc;
12
13 import javax.swing.*;
14 import javax.swing.plaf.basic.*;
15
16 /**
17  * Button Listener
18  * <p>
19  * <strong>Warning:</strong>
20  * Serialized objects of this class will not be compatible with
21  * future Swing releases. The current serialization support is appropriate
22  * for short term storage or RMI between applications running the same
23  * version of Swing. A future release of Swing will provide support for
24  * long term persistence.
25  *
26  * @version @(#)WindowsButtonListener.java 1.16 06/08/25
27  * @author Rich Schiavi
28  */

29 public class WindowsButtonListener extends BasicButtonListener {
30     public WindowsButtonListener(AbstractButton b) {
31     super(b);
32     }
33     /*
34       This class is currently not used, but exists in case customers
35       were subclassing it.
36     */

37 }
38
39
40
Popular Tags