runactionlist.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -