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

org.stjs.example.lib.bridge.STJSExampleBridgeGlobal Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package org.stjs.example.lib.bridge;

import org.stjs.javascript.annotation.GlobalScope;
import org.stjs.javascript.annotation.STJSBridge;

/**
 * This class is a bridge for the stjs-lib-example.js javascript file. Use this class in a Java code (the is used as
 * input source to STJS).
 * 
 * @author acraciun
 * 
 */
@GlobalScope
@STJSBridge(sources = "/stjs/example/stjs-lib-example.js")
public class STJSExampleBridgeGlobal {
	public static int globalFunc(int x) {
		throw new UnsupportedOperationException();
	}

	public static STJSExampleModuleBridge STJSExampleModule;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy