paintlistenersupport.java

来自「openmap java写的开源数字地图程序. 用applet实现,可以像g」· Java 代码 · 共 91 行

JAVA
91
字号
// **********************************************************************// // <copyright>// //  BBN Technologies//  10 Moulton Street//  Cambridge, MA 02138//  (617) 873-8000// //  Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source: /cvs/distapps/openmap/src/openmap/com/bbn/openmap/event/PaintListenerSupport.java,v $// $RCSfile: PaintListenerSupport.java,v $// $Revision: 1.5.2.1 $// $Date: 2004/10/14 18:26:46 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.event;import com.bbn.openmap.util.Debug;import java.awt.Graphics;import java.util.Iterator;/** * This is a utility class that can be used by beans that need support * for handling PaintListeners and calling the PaintListener.paint() * method. You can use an instance of this class as a member field of * your bean and delegate work to it. */public class PaintListenerSupport extends ListenerSupport {    /**     * Construct a PaintListenerSupport.     */    public PaintListenerSupport() {        this(null);    }    /**     * Construct a PaintListenerSupport.     *      * @param source source Object     */    public PaintListenerSupport(Object source) {        super(source);    }    /**     * Add a PaintListener.     *      * @param l PaintListener     */    public void addPaintListener(PaintListener l) {        addListener(l);    }    /**     * Remove a PaintListener.     *      * @param l PaintListener     */    public void removePaintListener(PaintListener l) {        removeListener(l);    }    /**     * Send a Paint event to all registered listeners.     *      * @param graphics PaintEvent     */    public void paint(Graphics graphics) {        if (size() == 0)            return;        Iterator it = iterator();        while (it.hasNext()) {            PaintListener target = (PaintListener) it.next();            if (Debug.debugging("paint")) {                Debug.output("PaintListenerSupport.paint(): target is: "                        + target);            }            target.listenerPaint(graphics);        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?