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

org.kt3k.straw.JsToNativeInterfaceImpl Maven / Gradle / Ivy

The newest version!
package org.kt3k.straw;

class JsToNativeInterfaceImpl implements JsToNativeInterface {
	private Straw straw;

	public JsToNativeInterfaceImpl(Straw straw) {
		this.straw = straw;
	}

	public void exec(String pluginName, String actionName, String argumentJson, String callbackId) {
		new StrawDrink(pluginName, actionName, argumentJson, callbackId, this.straw).exec();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy