List of usage examples for com.google.gwt.dev.shell.designtime JsValue subclass-usage
From source file com.google.gdt.eclipse.designer.ie.jsni.JsValueIE6.java
/** * Represents an IE JavaScript value. */ public class JsValueIE6 extends JsValue { private static class JsCleanupIE6 implements JsCleanup { private final Variant variant;
From source file com.google.gdt.eclipse.designer.moz.jsni.JsValueMoz32.java
/**
* Represents a Mozilla JavaScript value.
*
* TODO(jat): 64-bit compatibility - currently underlying pointers are passed
* around in a Java int, which only works on standard 32-bit platforms where
* sizeof(void*)=4
From source file com.google.gdt.eclipse.designer.moz.jsni.JsValueMoz64.java
/**
* Represents a Mozilla JavaScript value.
*
* TODO(jat): 64-bit compatibility - currently underlying pointers are passed
* around in a Java int, which only works on standard 32-bit platforms where
* sizeof(void*)=4
From source file com.google.gdt.eclipse.designer.webkit.jsni.JsValueWebKit.java
/**
* Represents a Safari JavaScript value.
*
* The basic rule is that any JSValue passed to Java code from native code will
* always be GC-protected in the native code and Java will always unprotect it
* when the value is finalized. It should always be stored in a JsValue object