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

com.alogic.xscript.plugins.Scope Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.xscript.plugins;

import java.util.Map;

import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;

public class Scope extends Segment{

	public Scope(String tag, Logiclet p) {
		super(tag, p);
	}

	@Override
	protected void onExecute(Map root,
			Map current, LogicletContext ctx, ExecuteWatcher watcher) {
		LogicletContext childCtx = new LogicletContext(ctx);
		super.onExecute(root, current, childCtx, watcher);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy