⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 svgmodule.java

📁 完全基于java开发的svg矢量绘图工具
💻 JAVA
字号:
package fr.itris.glips.svgeditor;import java.util.*;import javax.swing.*;import fr.itris.glips.svgeditor.menutool.*;/** * the interface that each module must implement * @author jordi * */public interface SVGModule {	/**	 * @return a map associating a menu item id to its menu item object	 */	public Hashtable<String, JMenuItem> getMenuItems();		/**	 * Returns the list of the popup items	 * @return the list of the popup items	 */	public Collection<SVGPopupItem> getPopupItems();		/**	 * @return a map associating a tool item id to its tool item object	 */	public Hashtable<String, JToggleButton> getToolItems();		/**	 * @return a map associating a tool item id to its tool item object	 */	public SVGToolFrame getToolFrame();		/**	 * cancels all the actions that could be running	 */	public void cancelActions();		/**	 * initializes the module	 */	public void initialize();}

⌨️ 快捷键说明

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