📄 drawingtoolrequestor.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/tools/drawing/DrawingToolRequestor.java,v $// $RCSfile: DrawingToolRequestor.java,v $// $Revision: 1.1.1.1.2.1 $// $Date: 2004/10/14 18:27:41 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.tools.drawing;import com.bbn.openmap.omGraphics.OMGraphic;import com.bbn.openmap.omGraphics.OMAction;/** * A DrawingToolRequestor is an object that asks a DrawingTool to do * something for it. The drawingComplete method is called when the * DrawingTool is complete, letting the requestor know when it should * get the map repainted, or to send the EditableOMGraphic to another * object. */public interface DrawingToolRequestor { /** * The method where a graphic, and an action to take on the * graphic, arrives. */ public void drawingComplete(OMGraphic omg, OMAction action); /** * Needed to fill in a GUI with a receiver's name, to enable the * user to send a graphic to a specific object. Should be a pretty * name, suitable to let a user know what it is. It's important * that the requestor have a name, because that could be the key * that is used in some GUI components. */ public String getName();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -