runactionlist.java
来自「PIY(Program It Yourself)是一个基于Java的应用程序开发」· Java 代码 · 共 25 行
JAVA
25 行
package piy.action;
import piy.*;
import java.io.*;
/**
* Runs the specified action list
*
* @author David Vivash
* @version 1.0, 04/05/01
*/
public class RunActionList implements PIYAction, Serializable {
private FixedProperty list = new FixedProperty(new ActionList(), ActionList.class);
public Class getReturnType() { return null; }
public FixedProperty getActionList() { return list; }
public void setActionList(FixedProperty val) { list = val; }
public Object execute() {
((ActionList)list.getActualValue()).execute();
return null;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?