xpdlelementeditor.java
来自「jawe的最新版本,基于Java的图形化工作流编辑器。图形化工作流编辑器 。使用」· Java 代码 · 共 38 行
JAVA
38 行
package org.enhydra.jawe.base.editor;import java.awt.Window;import org.enhydra.jawe.JaWEComponent;import org.enhydra.shark.xpdl.XMLElement;public interface XPDLElementEditor extends JaWEComponent { void configure(); void setTitle (String title); XPDLElementEditor getParentEditor (); XMLElement getEditingElement (); void editXPDLElement (); void editXPDLElement (XMLElement el); boolean canApplyChanges ();// void applyChanges (); int getStatus(); Window getWindow (); Window getParentWindow (); public boolean isVisible(); public void setModified (boolean modif); public void close ();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?