抽象类一定要有抽象方法吗?

/*
 * @(#)WindowAdapter.java  1.18 01/12/03
 *
 * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 
*/

 
package java.awt.
event ;
 
/**
 * An abstract adapter class for receiving window events.
 * The methods in this class are empty. This class exists as
 * convenience for creating listener objects.
 * <P>
 * Extend this class to create a <code>WindowEvent</code> listener 
 * and override the methods for the events of interest. (If you implement the 
 * <code>WindowListener</code> interface, you have to define all of
 * the methods in it. This abstract class defines null methods for them
 * all, so you can only have to define methods for events you care about.)
 * <P>
 * Create a listener object using the extended class and then register it with 
 * a Window using the window's <code>addWindowListener</code> 
 * method. When the window's status changes by virtue of being opened,
 * closed, activated or deactivated, iconified or deiconified, 
 * the relevant method in the listener
 * object is invoked, and the <code>WindowEvent</code> is passed to it.
 *
 * @see WindowEvent
 * @see WindowListener
 * @see <a href="
http://java.sun.com/docs/books/tutorial/post1.0/ui/windowlistener.html">Tutorial: Writing a Window Listener</a>
 * @see <a href="
http://www.awl.com/cp/javaseries/jcl1_2.html">Reference: The Java Class Libraries (update file)</a>
 *
 * @author Carl Quinn
 * @author Amy Fowler
 * @author David Mendenhall
 * @version 1.18, 12/03/01
 * @since 1.1
 
*/

public   abstract   class  WindowAdapter
    implements WindowListener, WindowStateListener, WindowFocusListener
{
    
/**
     * Invoked when a window has been opened.
     
*/

    
public void windowOpened(WindowEvent e) {}
 
    
/**
     * Invoked when a window is in the process of being closed.
     * The close operation can be overridden at this point.
     
*/

    
public void windowClosing(WindowEvent e) {}
 
    
/**
     * Invoked when a window has been closed.
     
*/

    
public void windowClosed(WindowEvent e) {}
 
    
/**
     * Invoked when a window is iconified.
     
*/

    
public void windowIconified(WindowEvent e) {}
 
    
/**
     * Invoked when a window is de-iconified.
     
*/

    
public void windowDeiconified(WindowEvent e) {}
 
    
/**
     * Invoked when a window is activated.
     
*/

    
public void windowActivated(WindowEvent e) {}
 
    
/**
     * Invoked when a window is de-activated.
     
*/

    
public void windowDeactivated(WindowEvent e) {}
 
    
/**
     * Invoked when a window state is changed.
     * @since 1.4
     
*/

    
public void windowStateChanged(WindowEvent e) {}
 
    
/**
     * Invoked when the Window is set to be the focused Window, which means
     * that the Window, or one of its subcomponents, will receive keyboard
     * events.
     *
     * @since 1.4
     
*/

    
public void windowGainedFocus(WindowEvent e) {}
 
    
/**
     * Invoked when the Window is no longer the focused Window, which means
     * that keyboard events will no longer be delivered to the Window or any of
     * its subcomponents.
     *
     * @since 1.4
     
*/

    
public void windowLostFocus(WindowEvent e) {}
}

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值