Java Code Examples for jsinterop.annotations.JsPackage#GLOBAL

The following examples show how to use jsinterop.annotations.JsPackage#GLOBAL . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: JsHammer.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsHammer $(Element element);
 
Example 2
Source File: JsAvatar.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(namespace = JsPackage.GLOBAL)
public static native String md5(String value);
 
Example 3
Source File: JsHammer.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsHammer $(String selector);
 
Example 4
Source File: JsMaterialElement.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsMaterialElement $(JQueryElement element);
 
Example 5
Source File: JsCarousel.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsCarousel $(String selector);
 
Example 6
Source File: JsMasonry.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsMasonry $(Element element);
 
Example 7
Source File: JsInputMask.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsInputMask $(String selector);
 
Example 8
Source File: JsBubble.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsBubble $(String selector);
 
Example 9
Source File: Promise.java    From j2cl with Apache License 2.0 4 votes vote down vote up
@JsMethod(namespace = JsPackage.GLOBAL)
static native <T> T await(Promise<T> thenable);
 
Example 10
Source File: JsMaterialElement.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
@JsMethod(namespace = JsPackage.GLOBAL)
public static native void showGrid(Object selector);
 
Example 11
Source File: NativeJsTypeTest.java    From j2cl with Apache License 2.0 4 votes vote down vote up
@JsProperty(namespace = JsPackage.GLOBAL, name = "Float32Array.BYTES_PER_ELEMENT")
private static native Object getFloat32ArrayBytesPerElement();
 
Example 12
Source File: JsReCaptcha.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(namespace = JsPackage.GLOBAL)
public static native JsReCaptcha initReCaptcha(String element, String siteKey, Functions.Func1<String> callback,
                                               Functions.Func expiredCallback, Functions.Func errorCallback, String theme, String type);
 
Example 13
Source File: JsRichEditor.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsRichEditor $(String selector);
 
Example 14
Source File: JsAvatar.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(namespace = JsPackage.GLOBAL)
public static native void jdenticon();
 
Example 15
Source File: JsHammer.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsHammer $(JQueryElement element);
 
Example 16
Source File: ValueType.java    From j2cl with Apache License 2.0 4 votes vote down vote up
@JsMethod(namespace = JsPackage.GLOBAL, name = "Object.values")
private static native Object[] values(Object a);
 
Example 17
Source File: JsReCaptcha.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(namespace = JsPackage.GLOBAL)
public static native String getResponse();
 
Example 18
Source File: Constructor.java    From j2cl with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "Object.getPrototypeOf", namespace = JsPackage.GLOBAL)
private static native Object getPrototypeOf(Object obj);
 
Example 19
Source File: JsCarousel.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
@JsMethod(name = "$", namespace = JsPackage.GLOBAL)
public static native JsCarousel $(JQueryElement element);
 
Example 20
Source File: JsMaterialElement.java    From gwt-material with Apache License 2.0 2 votes vote down vote up
/**
 * Navbar Component
 */
@JsMethod(namespace = JsPackage.GLOBAL)
public static native void initShrink(Element element, int duration);