All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xworker.javafx.ResourcesActions Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package xworker.javafx;

import org.xmeta.ActionContext;
import org.xmeta.Thing;

public class ResourcesActions {
	public static void create(ActionContext actionContext) {
		Thing self = actionContext.getObject("self");
		
		actionContext.peek().put("parent", null);
		for(Thing child : self.getChilds()) {
			child.doAction("create", actionContext);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy