Core JavaScript Reference 1.5
The public final class netscape.javascript.JSObject extends Object .
java.lang.Object
|
+----netscape.javascript.JSObject
Description
JavaScript objects are wrapped in an instance of the class netscape.javascript.JSObject and passed to Java. JSObject allows Java to manipulate JavaScript objects.
When a JavaScript object is sent to Java, the runtime engine creates a Java wrapper of type JSObject ; when a JSObject is sent from Java to JavaScript, the runtime engine unwraps it to its original JavaScript object type. The JSObject class provides a way to invoke JavaScript methods and examine JavaScript properties.
Any JavaScript data brought into Java is converted to Java data types. When the JSObject is passed back to JavaScript, the object is unwrapped and can be used by JavaScript code. See the Core JavaScript Guide for more information about data type conversions.
Method Summary
The netscape.javascript.JSObject class has the following methods:
Method |
Description |
---|---|
call
|
|
equals
|
Determines if two JSObject objects refer to the same instance. |
eval
|
|
getMember
|
|
getSlot
|
Retrieves the value of an array element of a JavaScript object. |
removeMember
|
|
setMember
|
|
setSlot
|
|
toString
|
The netscape.javascript.JSObject class has the following static methods:
Method |
Description |
---|---|
getWindow
|
The following sections show the declaration and usage of these methods.
Method. Calls a JavaScript method. Equivalent to " this.methodName(args[0], args[1], ...) " in JavaScript.
public Object call(String methodName,
Object args[])
Method. Determines if two JSObject objects refer to the same instance.
Overrides: equals in class java.lang.Object
public boolean equals(Object obj)
Backward Compatibility
JavaScript 1.3. In JavaScript 1.3 and earlier versions, you can use either the equals method of java.lang.Object or the == operator to evaluate two JSObject objects.
In more recent versions, the same JSObject can appear as different Java objects. You can use the equals method to determine whether two JSObject s refer to the same instance.
Method. Evaluates a JavaScript expression. The expression is a string of JavaScript source code which will be evaluated in the context given by "this".
public Object eval(String s)
Method. Retrieves the value of a property of a JavaScript object. Equivalent to " this.name " in JavaScript.
public Object getMember(String name)
Method. Retrieves the value of an array element of a JavaScript object. Equivalent to " this[index] " in JavaScript.
public Object getSlot(int index)
Static method. Returns a JSObject for the window containing the given applet. This method is useful in client-side JavaScript only.
public static JSObject getWindow(Applet applet)
Method. Removes a property of a JavaScript object.
public void removeMember(String name)
Method. Sets the value of a property of a JavaScript object. Equivalent to " this.name = value " in JavaScript.
public void setMember(String name,
Object value)
Method. Sets the value of an array element of a JavaScript object. Equivalent to " this[index] = value " in JavaScript.
public void setSlot(int index,
Object value)
Method. Converts a JSObject to a String .
Overrides: toString in class java.lang.Object
public String toString()
Copyright © 2000 Netscape Communications Corp. All rights reserved.
Last Updated September 28, 2000