Uses of Class
org.mozilla.javascript.ScriptableObject
-
Packages that use ScriptableObject Package Description org.mozilla.javascript org.mozilla.javascript.commonjs.module Provides the public API for the CommonJS Modules/1.1 implementation.org.mozilla.javascript.engine org.mozilla.javascript.regexp org.mozilla.javascript.tools.shell org.mozilla.javascript.typedarrays org.mozilla.javascript.xml -
-
Uses of ScriptableObject in org.mozilla.javascript
Subclasses of ScriptableObject in org.mozilla.javascript Modifier and Type Class Description classArrowFunctionThe class for Arrow Function Definitions EcmaScript 6 Rev 14, March 8, 2013 Draft spec , 13.2classBaseFunctionThe base class for Function objects.classBoundFunctionThe class for results of the Function.bind operation EcmaScript 5 spec, 15.3.4.5classES6GeneratorclassES6IteratorclassFunctionObjectclassIdFunctionObjectclassIdFunctionObjectES6classIdScriptableObjectBase class for native object implementation that uses IdFunctionObject to export its methods to script via <class-name>.prototype object.classImporterTopLevelClass ImporterTopLevelclassLambdaConstructorThis class implements a JavaScript function that may be used as a constructor by delegating to an interface that can be easily implemented as a lambda.classLambdaFunctionThis class implements a single JavaScript function that has the prototype of the built-in Function class, and which is implemented using a single function that can easily be implemented using a lambda expression.classNativeArrayThis class implements the Array native object.classNativeArrayIteratorclassNativeCallThis class implements the activation object.classNativeCallSiteThis class is used by the V8 extension "Error.prepareStackTrace." It is passed to that function, which may then use it to format the stack as it sees fit.classNativeCollectionIteratorclassNativeConsoleclassNativeContinuationclassNativeFunctionThis class implements the Function native object.classNativeGeneratorThis class implements generator objects.classNativeIteratorThis class implements iterator objects.static classNativeIterator.StopIterationclassNativeJavaConstructorThis class reflects a single Java constructor into the JavaScript environment.classNativeJavaMethodThis class reflects Java methods into the JavaScript environment and handles overloading of methods.classNativeJavaPackageThis class reflects Java packages into the JavaScript environment.classNativeJavaTopPackageThis class reflects Java packages into the JavaScript environment.classNativeJSONThis class implements the JSON native object.classNativeMapclassNativeObjectThis class implements the Object native object.classNativePromiseclassNativeSetclassNativeStringIteratorclassNativeSymbolThis is an implementation of the standard "Symbol" type that implements all of its weird properties.classNativeWeakMapThis is an implementation of the ES6 WeakMap class.classNativeWeakSetThis is an implementation of the ES6 WeakSet class.classTopLevelA top-level scope object that provides special means to cache and preserve the initial values of the built-in constructor properties for better ECMAScript compliance.Methods in org.mozilla.javascript that return ScriptableObject Modifier and Type Method Description protected static ScriptableObjectScriptableObject. buildDataDescriptor(Scriptable scope, java.lang.Object value, int attributes)protected static ScriptableObjectScriptableObject. ensureScriptableObject(java.lang.Object arg)static ScriptableObjectScriptRuntime. getGlobal(Context cx)static ScriptableObjectScriptRuntime. getLibraryScopeOrNull(Scriptable scope)protected ScriptableObjectIdScriptableObject. getOwnPropertyDescriptor(Context cx, java.lang.Object id)protected ScriptableObjectNativeArray. getOwnPropertyDescriptor(Context cx, java.lang.Object id)protected ScriptableObjectScriptableObject. getOwnPropertyDescriptor(Context cx, java.lang.Object id)ScriptableObjectContext. initSafeStandardObjects()Initialize the standard objects, leaving out those that offer access directly to Java classes.ScriptableObjectContext. initSafeStandardObjects(ScriptableObject scope, boolean sealed)Initialize the standard objects, leaving out those that offer access directly to Java classes.static ScriptableObjectScriptRuntime. initSafeStandardObjects(Context cx, ScriptableObject scope, boolean sealed)ScriptableObjectContext. initStandardObjects()Initialize the standard objects.ScriptableObjectContext. initStandardObjects(ScriptableObject scope, boolean sealed)Initialize the standard objects.static ScriptableObjectScriptRuntime. initStandardObjects(Context cx, ScriptableObject scope, boolean sealed)Methods in org.mozilla.javascript with parameters of type ScriptableObject Modifier and Type Method Description protected intScriptableObject. applyDescriptorToAttributeBitset(int attributes, ScriptableObject desc)booleanClassCache. associate(ScriptableObject topScope)Associate ClassCache object with the given top-level scope.protected voidScriptableObject. checkPropertyChange(java.lang.Object id, ScriptableObject current, ScriptableObject desc)protected voidScriptableObject. checkPropertyDefinition(ScriptableObject desc)protected static java.lang.ObjectNativeJavaObject. createInterfaceAdapter(java.lang.Class<?> type, ScriptableObject so)voidScriptableObject. defineOwnProperties(Context cx, ScriptableObject props)Defines one or more properties on this object.protected voidIdScriptableObject. defineOwnProperty(Context cx, java.lang.Object key, ScriptableObject desc, boolean checkValid)protected voidNativeArray. defineOwnProperty(Context cx, java.lang.Object id, ScriptableObject desc, boolean checkValid)voidScriptableObject. defineOwnProperty(Context cx, java.lang.Object id, ScriptableObject desc)Defines a property on an object.protected voidScriptableObject. defineOwnProperty(Context cx, java.lang.Object id, ScriptableObject desc, boolean checkValid)Defines a property on an object.protected static voidES6Iterator. init(ScriptableObject scope, boolean sealed, IdScriptableObject prototype, java.lang.String tag)ScriptableContext. initSafeStandardObjects(ScriptableObject scope)Initialize the standard objects, leaving out those that offer access directly to Java classes.ScriptableObjectContext. initSafeStandardObjects(ScriptableObject scope, boolean sealed)Initialize the standard objects, leaving out those that offer access directly to Java classes.static ScriptableObjectScriptRuntime. initSafeStandardObjects(Context cx, ScriptableObject scope, boolean sealed)ScriptableContext. initStandardObjects(ScriptableObject scope)Initialize the standard objects.ScriptableObjectContext. initStandardObjects(ScriptableObject scope, boolean sealed)Initialize the standard objects.static ScriptableObjectScriptRuntime. initStandardObjects(Context cx, ScriptableObject scope, boolean sealed)protected static booleanScriptableObject. isAccessorDescriptor(ScriptableObject desc)Implements IsAccessorDescriptor as described in ES5 8.10.1protected static booleanScriptableObject. isDataDescriptor(ScriptableObject desc)Implements IsDataDescriptor as described in ES5 8.10.2protected booleanScriptableObject. isGenericDescriptor(ScriptableObject desc)Implements IsGenericDescriptor as described in ES5 8.10.3static voidScriptRuntime. setBuiltinProtoAndParent(ScriptableObject object, Scriptable scope, TopLevel.Builtins type)static voidScriptRuntime. setObjectProtoAndParent(ScriptableObject object, Scriptable scope)Constructors in org.mozilla.javascript with parameters of type ScriptableObject Constructor Description LazilyLoadedCtor(ScriptableObject scope, java.lang.String propertyName, java.lang.String className, boolean sealed) -
Uses of ScriptableObject in org.mozilla.javascript.commonjs.module
Subclasses of ScriptableObject in org.mozilla.javascript.commonjs.module Modifier and Type Class Description classModuleScopeA top-level module scope.classRequireImplements the require() function as defined by Common JS modules. -
Uses of ScriptableObject in org.mozilla.javascript.engine
Subclasses of ScriptableObject in org.mozilla.javascript.engine Modifier and Type Class Description classBindingsObjectThis class makes the Bindings object into a Scriptable. -
Uses of ScriptableObject in org.mozilla.javascript.regexp
Subclasses of ScriptableObject in org.mozilla.javascript.regexp Modifier and Type Class Description classNativeRegExpThis class implements the RegExp native object. -
Uses of ScriptableObject in org.mozilla.javascript.tools.shell
Subclasses of ScriptableObject in org.mozilla.javascript.tools.shell Modifier and Type Class Description classEnvironmentEnvironment, intended to be instantiated at global scope, provides a natural way to access System properties from JavaScript.classGlobalThis class provides for sharing functions across multiple threads.Methods in org.mozilla.javascript.tools.shell with parameters of type ScriptableObject Modifier and Type Method Description static voidEnvironment. defineClass(ScriptableObject scope)Constructors in org.mozilla.javascript.tools.shell with parameters of type ScriptableObject Constructor Description Environment(ScriptableObject scope) -
Uses of ScriptableObject in org.mozilla.javascript.typedarrays
Subclasses of ScriptableObject in org.mozilla.javascript.typedarrays Modifier and Type Class Description classNativeArrayBufferA NativeArrayBuffer is the backing buffer for a typed array.classNativeArrayBufferViewThis class is the abstract parent for all views of the array.classNativeDataViewThis class represents the JavaScript "DataView" interface, which allows direct manipulations of the bytes in a NativeArrayBuffer.classNativeFloat32ArrayAn array view that stores 32-bit quantities and implements the JavaScript "loat32Array" interface.classNativeFloat64ArrayAn array view that stores 64-bit quantities and implements the JavaScript "Float64Array" interface.classNativeInt16ArrayAn array view that stores 16-bit quantities and implements the JavaScript "Int16Array" interface.classNativeInt32ArrayAn array view that stores 32-bit quantities and implements the JavaScript "Int32Array" interface.classNativeInt8ArrayAn array view that stores 8-bit quantities and implements the JavaScript "Int8Array" interface.classNativeTypedArrayView<T>This class is the abstract parent for all of the various typed arrays.classNativeUint16ArrayAn array view that stores 16-bit quantities and implements the JavaScript "Uint16Array" interface.classNativeUint32ArrayAn array view that stores 32-bit quantities and implements the JavaScript "Uint32Array" interface.classNativeUint8ArrayAn array view that stores 8-bit quantities and implements the JavaScript "Uint8Array" interface.classNativeUint8ClampedArrayAn array view that stores 8-bit quantities and implements the JavaScript "Uint8ClampedArray" interface. -
Uses of ScriptableObject in org.mozilla.javascript.xml
Subclasses of ScriptableObject in org.mozilla.javascript.xml Modifier and Type Class Description classXMLObjectThis Interface describes what all XML objects (XML, XMLList) should have in common.
-