欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

runactionlist.java

PIY(Program It Yourself)是一个基于Java的应用程序开发环境
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 + -