popupmenufigureselection.java

来自「开源(Open Source)项目JHotDraw的文档和源程序」· Java 代码 · 共 33 行

JAVA
33
字号
/*
 * @(#)PopupMenuFigureSelection.java 5.2
 *
 */
 
package CH.ifa.draw.contrib;

import CH.ifa.draw.framework.*;

/**
 * An interface which allows a popup menu to interact with its Figure to
 * which it is associated.
 *
 * @author      Wolfram Kaiser
 * @version     JHotDraw 5.2        31.08.1999
 */
public interface PopupMenuFigureSelection {

	/**
	 * Set the figure which was selected when the popup menu was invoked.
	 *
	 * @param   newSelectedFigure   figure which is selected (typically be a SelectionTool)
	 */
	public void setSelectedFigure(Figure newSelectedFigure);

	/**
	 * Get the figure which was selected when the popup menu was invoked.
	 *
	 * @return  figure which is selected (typically be a SelectionTool)
	 */
	public Figure getSelectedFigure();
}

⌨️ 快捷键说明

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