configurable.java
来自「一个java工作流引擎」· Java 代码 · 共 15 行
JAVA
15 行
package org.jbpm.delegation;
import org.jbpm.*;
public interface Configurable {
/**
* is called just after creation of the delegation object.
* @param text is the configuration text specified in the processdefinition.xml file.
* @throws {@link org.jbpm.ConfigurationException} if the given configuration is invalid for this object.
*/
void configure( String configuration ) throws ConfigurationException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?