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

📄 startfunctioneditor.java

📁 osworkflow修改版本
💻 JAVA
字号:
package com.opensymphony.workflow.designer.editor;import com.opensymphony.workflow.designer.InitialActionCell;import com.opensymphony.workflow.designer.ResourceManager;import com.opensymphony.workflow.designer.dialogs.DialogUtils;import com.opensymphony.workflow.loader.AbstractDescriptor;import com.opensymphony.workflow.loader.ConfigFunctionDescriptor;/** * @author jackflit * Date: 2003-11-24 */public class StartFunctionEditor extends FunctionEditor{  public StartFunctionEditor(InitialActionCell cell)  {    super(cell);  }  protected InitialActionCell getCell()  {    return (InitialActionCell)cell;  }  protected AbstractDescriptor getParent()  {    return getCell().getActionDescriptor();  }	protected ConfigFunctionDescriptor getFunction()	{		ConfigFunctionDescriptor template = (ConfigFunctionDescriptor)DialogUtils.getUserSelection(getModel().getPalette().getPreFunctions(),		  ResourceManager.getString("function.select"),		  ResourceManager.getString("function.select"), null);		if(template!=null)		  return new ConfigFunctionDescriptor(template);		return null;	}	}

⌨️ 快捷键说明

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