📄 paintlistenersupport.java
字号:
// **********************************************************************// // <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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -