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

xworker.gswt.resources.Resources Maven / Gradle / Ivy

package xworker.gswt.resources;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy