Uses of Class
netscape.javascript.JSException

Packages that use JSException
Package
Description
Deprecated, for removal: This API element is subject to removal in a future version.
The jdk.jsobject module will be delivered with JavaFX.
  • Uses of JSException in netscape.javascript

    Methods in netscape.javascript that throw JSException
    Modifier and Type
    Method
    Description
    abstract Object
    JSObject.call(String methodName, Object... args)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Calls a JavaScript method.
    abstract Object
    JSObject.eval(String s)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Evaluates a JavaScript expression.
    abstract Object
    JSObject.getMember(String name)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Retrieves a named member of a JavaScript object.
    abstract Object
    JSObject.getSlot(int index)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Retrieves an indexed member of a JavaScript object.
    abstract void
    JSObject.removeMember(String name)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Removes a named member of a JavaScript object.
    abstract void
    JSObject.setMember(String name, Object value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Sets a named member of a JavaScript object.
    abstract void
    JSObject.setSlot(int index, Object value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Sets an indexed member of a JavaScript object.