Java Doc for JsValueMoz.java in  » Ajax » GWT » com » google » gwt » dev » shell » moz » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » GWT » com.google.gwt.dev.shell.moz 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.google.gwt.dev.shell.JsValue
      com.google.gwt.dev.shell.moz.JsValueMoz

JsValueMoz
public class JsValueMoz extends JsValue (Code)
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



Constructor Summary
public  JsValueMoz()
     Create a JsValueMoz object representing the undefined value.
public  JsValueMoz(int jsRootedValue)
     Create a JsValueMoz object wrapping a JsRootedValue object given the pointer to it as an integer.
public  JsValueMoz(JsValueMoz other)
     Copy constructor.

Method Summary
native protected static  boolean_getBoolean(int jsRootedValue)
    
native protected static  int_getInt(int jsRootedValue)
    
native protected static  double_getNumber(int jsRootedValue)
    
native protected static  String_getString(int jsRootedValue)
    
native protected static  String_getTypeString(int jsRootedValue)
    
native protected static  DispatchObject_getWrappedJavaObject(int jsRootedValue)
    
native protected static  boolean_isBoolean(int jsRootedValue)
    
native protected static  boolean_isInt(int jsRootedValue)
    
native protected static  boolean_isJavaScriptObject(int jsRootedValue)
    
native protected static  boolean_isJavaScriptString(int jsRootedValue)
    
native protected static  boolean_isNull(int jsRootedValue)
    
native protected static  boolean_isNumber(int jsRootedValue)
    
native protected static  boolean_isString(int jsRootedValue)
    
native protected static  boolean_isUndefined(int jsRootedValue)
    
native protected static  boolean_isWrappedJavaObject(int jsRootedValue)
    
native protected static  void_setBoolean(int jsRootedValue, boolean val)
    
native protected static  void_setDouble(int jsRootedValue, double val)
    
native protected static  void_setInt(int jsRootedValue, int val)
    
native protected static  void_setJsRootedValue(int jsRootedValue, int jsOtherRootedValue)
    
native protected static  void_setNull(int jsRootedValue)
    
native protected static  void_setString(int jsRootedValue, String val)
    
native protected static  void_setUndefined(int jsRootedValue)
    
native protected static  void_setWrappedFunction(int jsRootedValue, String methodName, DispatchMethod dispatchMethod)
    
native protected static  void_setWrappedJavaObject(int jsRootedValue, DispatchObject val)
    
protected  JsCleanupcreateCleanupObject()
     Create a cleanup object that will free the underlying JsRootedValue object.
public  booleangetBoolean()
    
public  intgetInt()
    
public  intgetJsRootedValue()
     Returns the underlying JavaScript object pointer as an integer.
public  doublegetNumber()
    
public  StringgetString()
    
public  StringgetTypeString()
    
public  ObjectgetWrappedJavaObject()
    
public  booleanisBoolean()
    
public  booleanisInt()
    
public  booleanisJavaScriptObject()
    
public  booleanisNull()
    
public  booleanisNumber()
    
public  booleanisString()
    
public  booleanisUndefined()
    
public  booleanisWrappedJavaObject()
    
public  voidsetBoolean(boolean val)
    
public  voidsetByte(byte val)
    
public  voidsetChar(char val)
    
public  voidsetDouble(double val)
    
public  voidsetInt(int val)
    
public  voidsetNull()
    
public  voidsetShort(short val)
    
public  voidsetString(String val)
    
public  voidsetUndefined()
    
public  voidsetValue(JsValue other)
    
public  voidsetWrappedFunction(String methodName, DispatchMethod dispatchMethod)
     Wrap a function call to a Java method in this JavaScript value.
public  voidsetWrappedJavaObject(CompilingClassLoader cl, Object val)
    


Constructor Detail
JsValueMoz
public JsValueMoz()(Code)
Create a JsValueMoz object representing the undefined value.



JsValueMoz
public JsValueMoz(int jsRootedValue)(Code)
Create a JsValueMoz object wrapping a JsRootedValue object given the pointer to it as an integer.
Parameters:
  jsRootedValue - pointer to underlying JsRootedValue as an integer.



JsValueMoz
public JsValueMoz(JsValueMoz other)(Code)
Copy constructor.
Parameters:
  other - JsValueMoz instance to copy




Method Detail
_getBoolean
native protected static boolean _getBoolean(int jsRootedValue)(Code)



_getInt
native protected static int _getInt(int jsRootedValue)(Code)



_getNumber
native protected static double _getNumber(int jsRootedValue)(Code)



_getString
native protected static String _getString(int jsRootedValue)(Code)



_getTypeString
native protected static String _getTypeString(int jsRootedValue)(Code)



_getWrappedJavaObject
native protected static DispatchObject _getWrappedJavaObject(int jsRootedValue)(Code)



_isBoolean
native protected static boolean _isBoolean(int jsRootedValue)(Code)



_isInt
native protected static boolean _isInt(int jsRootedValue)(Code)



_isJavaScriptObject
native protected static boolean _isJavaScriptObject(int jsRootedValue)(Code)



_isJavaScriptString
native protected static boolean _isJavaScriptString(int jsRootedValue)(Code)



_isNull
native protected static boolean _isNull(int jsRootedValue)(Code)



_isNumber
native protected static boolean _isNumber(int jsRootedValue)(Code)



_isString
native protected static boolean _isString(int jsRootedValue)(Code)



_isUndefined
native protected static boolean _isUndefined(int jsRootedValue)(Code)



_isWrappedJavaObject
native protected static boolean _isWrappedJavaObject(int jsRootedValue)(Code)



_setBoolean
native protected static void _setBoolean(int jsRootedValue, boolean val)(Code)



_setDouble
native protected static void _setDouble(int jsRootedValue, double val)(Code)



_setInt
native protected static void _setInt(int jsRootedValue, int val)(Code)



_setJsRootedValue
native protected static void _setJsRootedValue(int jsRootedValue, int jsOtherRootedValue)(Code)



_setNull
native protected static void _setNull(int jsRootedValue)(Code)



_setString
native protected static void _setString(int jsRootedValue, String val)(Code)



_setUndefined
native protected static void _setUndefined(int jsRootedValue)(Code)



_setWrappedFunction
native protected static void _setWrappedFunction(int jsRootedValue, String methodName, DispatchMethod dispatchMethod)(Code)



_setWrappedJavaObject
native protected static void _setWrappedJavaObject(int jsRootedValue, DispatchObject val)(Code)



createCleanupObject
protected JsCleanup createCleanupObject()(Code)
Create a cleanup object that will free the underlying JsRootedValue object.



getBoolean
public boolean getBoolean()(Code)



getInt
public int getInt()(Code)



getJsRootedValue
public int getJsRootedValue()(Code)
Returns the underlying JavaScript object pointer as an integer.



getNumber
public double getNumber()(Code)



getString
public String getString()(Code)



getTypeString
public String getTypeString()(Code)



getWrappedJavaObject
public Object getWrappedJavaObject()(Code)



isBoolean
public boolean isBoolean()(Code)



isInt
public boolean isInt()(Code)



isJavaScriptObject
public boolean isJavaScriptObject()(Code)



isNull
public boolean isNull()(Code)



isNumber
public boolean isNumber()(Code)



isString
public boolean isString()(Code)



isUndefined
public boolean isUndefined()(Code)



isWrappedJavaObject
public boolean isWrappedJavaObject()(Code)



setBoolean
public void setBoolean(boolean val)(Code)



setByte
public void setByte(byte val)(Code)



setChar
public void setChar(char val)(Code)



setDouble
public void setDouble(double val)(Code)



setInt
public void setInt(int val)(Code)



setNull
public void setNull()(Code)



setShort
public void setShort(short val)(Code)



setString
public void setString(String val)(Code)



setUndefined
public void setUndefined()(Code)



setValue
public void setValue(JsValue other)(Code)



setWrappedFunction
public void setWrappedFunction(String methodName, DispatchMethod dispatchMethod)(Code)
Wrap a function call to a Java method in this JavaScript value.
Parameters:
  methodName - the name of the method to invoke
Parameters:
  dispatchMethod - the wrapper object



setWrappedJavaObject
public void setWrappedJavaObject(CompilingClassLoader cl, Object val)(Code)



Methods inherited from com.google.gwt.dev.shell.JsValue
abstract protected JsCleanup createCleanupObject()(Code)(Java Doc)
final protected void finalize() throws Throwable(Code)(Java Doc)
abstract public boolean getBoolean()(Code)(Java Doc)
abstract public int getInt()(Code)(Java Doc)
abstract public double getNumber()(Code)(Java Doc)
abstract public String getString()(Code)(Java Doc)
abstract public String getTypeString()(Code)(Java Doc)
abstract public Object getWrappedJavaObject()(Code)(Java Doc)
abstract public boolean isBoolean()(Code)(Java Doc)
abstract public boolean isInt()(Code)(Java Doc)
abstract public boolean isJavaScriptObject()(Code)(Java Doc)
abstract public boolean isNull()(Code)(Java Doc)
abstract public boolean isNumber()(Code)(Java Doc)
abstract public boolean isString()(Code)(Java Doc)
abstract public boolean isUndefined()(Code)(Java Doc)
abstract public boolean isWrappedJavaObject()(Code)(Java Doc)
public static void mainThreadCleanup()(Code)(Java Doc)
abstract public void setBoolean(boolean val)(Code)(Java Doc)
abstract public void setByte(byte val)(Code)(Java Doc)
abstract public void setChar(char val)(Code)(Java Doc)
abstract public void setDouble(double val)(Code)(Java Doc)
abstract public void setInt(int val)(Code)(Java Doc)
abstract public void setNull()(Code)(Java Doc)
abstract public void setShort(short val)(Code)(Java Doc)
abstract public void setString(String val)(Code)(Java Doc)
abstract public void setUndefined()(Code)(Java Doc)
abstract public void setValue(JsValue other)(Code)(Java Doc)
abstract public void setWrappedJavaObject(CompilingClassLoader cl, T val)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.