Class ScriptableObject
- All Implemented Interfaces:
Serializable
,ConstProperties
,DebuggableObject
,Scriptable
,SymbolScriptable
- Direct Known Subclasses:
BindingsObject
,IdScriptableObject
,JavaConstructorObject
,JavaFunctionObject
,JavaObjectWrapper
,NativeArrayBuffer
,NativeArrayBufferView
,NativeJavaPackage
,NativeJSON
,NativePromise
,NativeSymbol
Various properties and methods of JavaScript objects can be conveniently defined using methods of ScriptableObject.
Classes extending ScriptableObject must define the getClassName method.
- Author:
- Norris Boyd
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
This comparator sorts property fields in spec-compliant order. -
Field Summary
Modifier and TypeFieldDescriptionstatic final int
static final int
Property attribute indicating property is not enumerated.static final int
The empty property attribute.static final int
Property attribute indicating property cannot be deleted.static final int
Property attribute indicating assignment to this property is ignored.static final int
Property attribute indicating that this is a const property that has not been assigned yet.Fields inherited from interface org.mozilla.javascript.Scriptable
NOT_FOUND
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected int
applyDescriptorToAttributeBitset
(int attributes, ScriptableObject desc) final Object
associateValue
(Object key, Object value) Associate arbitrary application-specific value with this object.boolean
Emulate the SpiderMonkey (and Firefox) feature of allowing custom objects to avoid detection by normal "object detection" code patterns.protected static ScriptableObject
buildDataDescriptor
(Scriptable scope, Object value, int attributes) static Object
callMethod
(Context cx, Scriptable obj, String methodName, Object[] args) Call a method of an object.static Object
callMethod
(Scriptable obj, String methodName, Object[] args) Call a method of an object.protected void
checkPropertyChange
(Object id, ScriptableObject current, ScriptableObject desc) protected void
static <T extends Scriptable>
voiddefineClass
(Scriptable scope, Class<T> clazz) Defines JavaScript objects from a Java class that implements Scriptable.static <T extends Scriptable>
voiddefineClass
(Scriptable scope, Class<T> clazz, boolean sealed) Defines JavaScript objects from a Java class, optionally allowing sealing.static <T extends Scriptable>
StringdefineClass
(Scriptable scope, Class<T> clazz, boolean sealed, boolean mapInheritance) Defines JavaScript objects from a Java class, optionally allowing sealing and mapping of Java inheritance to JavaScript prototype-based inheritance.void
defineConst
(String name, Scriptable start) Reserves a definition spot for a const.static void
defineConstProperty
(Scriptable destination, String propertyName) Utility method to add properties to arbitrary Scriptable object.void
defineFunctionProperties
(String[] names, Class<?> clazz, int attributes) Search for names in a class, adding the resulting methods as properties.void
defineOwnProperties
(Context cx, ScriptableObject props) Defines one or more properties on this object.void
defineOwnProperty
(Context cx, Object id, ScriptableObject desc) Defines a property on an object.protected void
defineOwnProperty
(Context cx, Object id, ScriptableObject desc, boolean checkValid) Defines a property on an object.void
defineProperty
(String propertyName, Class<?> clazz, int attributes) Define a JavaScript property with getter and setter side effects.void
defineProperty
(String propertyName, Object value, int attributes) Define a JavaScript property.void
defineProperty
(String propertyName, Object delegateTo, Method getter, Method setter, int attributes) Define a JavaScript property.void
Define a property on this object that is implemented using lambda functions.void
defineProperty
(Context cx, String name, Function<Scriptable, Object> getter, BiConsumer<Scriptable, Object> setter, int attributes) Define a property on this object that is implemented using lambda functions accepting Scriptable `this` object as first parameter.void
defineProperty
(Scriptable scope, String name, int length, Callable target, int attributes, int propertyAttributes) Utility method to add lambda properties to arbitrary Scriptable object.static void
defineProperty
(Scriptable destination, String propertyName, Object value, int attributes) Utility method to add properties to arbitrary Scriptable object.void
defineProperty
(Symbol key, Object value, int attributes) A version of defineProperty that uses a Symbol key.void
delete
(int index) Removes the indexed property from the object.void
Removes a named property from the object.void
Removes an object like the others, but using a Symbol as the key.static boolean
deleteProperty
(Scriptable obj, int index) Removes the property from an object or its prototype chain.static boolean
deleteProperty
(Scriptable obj, String name) Removes the property from an object or its prototype chain.protected static Scriptable
ensureScriptable
(Object arg) protected static ScriptableObject
protected static SymbolScriptable
protected Object
equivalentValues
(Object value) Custom==
operator.get
(int index, Scriptable start) Returns the value of the indexed property or NOT_FOUND.get
(String name, Scriptable start) Returns the value of the named property or NOT_FOUND.get
(Symbol key, Scriptable start) Another version of Get that supports Symbol keyed properties.Object[]
Returns an array of ids of all non-Symbol properties of the object.static Scriptable
getArrayPrototype
(Scriptable scope) final Object
getAssociatedValue
(Object key) Get arbitrary application-specific value associated with this object.int
getAttributes
(int index) Get the attributes of an indexed property.final int
getAttributes
(int index, Scriptable start) Deprecated.int
getAttributes
(String name) Get the attributes of a named property.final int
getAttributes
(String name, Scriptable start) Deprecated.int
getAttributes
(Symbol sym) abstract String
Return the name of the class.static Scriptable
getClassPrototype
(Scriptable scope, String className) Get the prototype for the named class.getDefaultValue
(Class<?> typeHint) Implements the [[DefaultValue]] internal method.static Object
getDefaultValue
(Scriptable object, Class<?> typeHint) Return the array that was previously set by the call to "setExternalArrayData".This is a function used by setExternalArrayData to dynamically get the "length" property value.static Scriptable
getFunctionPrototype
(Scriptable scope) Get the Function.prototype property.static Scriptable
getGetterOrSetter
(String name, int index, boolean isSetter) Deprecated.since 1.7.14.getGetterOrSetter
(String name, int index, Scriptable scope, boolean isSetter) Get the getter or setter for a given property.Object[]
getIds()
Returns an array of ids for the properties of the object.static Scriptable
getObjectPrototype
(Scriptable scope) Get the Object.prototype property.protected ScriptableObject
getOwnPropertyDescriptor
(Context cx, Object id) Returns the parent (enclosing) scope of the object.static Object
getProperty
(Scriptable obj, int index) Gets an indexed property from an object or any object in its prototype chain.static Object
getProperty
(Scriptable obj, String name) Gets a named property from an object or any object in its prototype chain.static Object
getProperty
(Scriptable obj, Symbol key) This is a version of getProperty that works with Symbols.static Object[]
getPropertyIds
(Scriptable obj) Returns an array of all ids from an object and its prototypes.Returns the prototype of the object.static Scriptable
Get the global scope.static Object
getTopScopeValue
(Scriptable scope, Object key) Get arbitrary application-specific value associated with the top scope of the given scope.static <T> T
getTypedProperty
(Scriptable s, int index, Class<T> type) Gets an indexed property from an object or any object in its prototype chain and coerces it to the requested Java type.static <T> T
getTypedProperty
(Scriptable s, String name, Class<T> type) Gets a named property from an object or any object in its prototype chain and coerces it to the requested Java type.Gets the value that will be returned by calling the typeof operator on this object.boolean
has
(int index, Scriptable start) Returns true if the property index is defined.boolean
has
(String name, Scriptable start) Returns true if the named property is defined.boolean
has
(Symbol key, Scriptable start) A version of "has" that supports symbols.boolean
hasInstance
(Scriptable instance) Implements the instanceof operator.static boolean
hasProperty
(Scriptable obj, int index) Returns whether an indexed property is defined in an object or any object in its prototype chain.static boolean
hasProperty
(Scriptable obj, String name) Returns whether a named property is defined in an object or any object in its prototype chain.static boolean
hasProperty
(Scriptable obj, Symbol key) A version of hasProperty for properties with Symbol keys.protected static boolean
Implements IsAccessorDescriptor as described in ES5 8.10.1boolean
Returns true if the named property is defined as a const on this object.protected static boolean
Implements IsDataDescriptor as described in ES5 8.10.2boolean
isEmpty()
boolean
protected static boolean
protected boolean
Implements IsGenericDescriptor as described in ES5 8.10.3protected boolean
isGetterOrSetter
(String name, int index, boolean setter) Returns whether a property is a getter or a setterfinal boolean
isSealed()
Return true if this object is sealed.protected static boolean
void
void
put
(int index, Scriptable start, Object value) Sets the value of the indexed property, creating it if need be.void
put
(String name, Scriptable start, Object value) Sets the value of the named property, creating it if need be.void
put
(Symbol key, Scriptable start, Object value) Implementation of put required by SymbolScriptable objects.void
putConst
(String name, Scriptable start, Object value) Sets the value of the named const property, creating it if need be.static void
putConstProperty
(Scriptable obj, String name, Object value) Puts a named property in an object or in an object in its prototype chain.static void
putProperty
(Scriptable obj, int index, Object value) Puts an indexed property in an object or in an object in its prototype chain.static void
putProperty
(Scriptable obj, String name, Object value) Puts a named property in an object or in an object in its prototype chain.static void
putProperty
(Scriptable obj, Symbol key, Object value) This is a version of putProperty for Symbol keys.protected Slot
static void
redefineProperty
(Scriptable obj, String name, boolean isConst) If hasProperty(obj, name) would return true, then if the property that was found is compatible with the new property, this method just returns.protected boolean
Implements SameValue as described in ES5 9.12, additionally checking if new value is defined.void
Seal this object.void
setAttributes
(int index, int attributes) Set the attributes of an indexed property.void
setAttributes
(int index, Scriptable start, int attributes) Deprecated.void
setAttributes
(String name, int attributes) Set the attributes of a named property.final void
setAttributes
(String name, Scriptable start, int attributes) Deprecated.void
setAttributes
(Symbol key, int attributes) Set attributes of a Symbol-keyed property.protected void
setCommonDescriptorProperties
(int attributes, boolean defineWritable) void
Attach the specified object to this object, and delegate all indexed property lookups to it.void
setGetterOrSetter
(String name, int index, Callable getterOrSetter, boolean isSetter) Implement the legacy "__defineGetter__" and "__defineSetter__" methods.void
Sets the parent (enclosing) scope of the object.void
Sets the prototype of the object.int
size()
-
Field Details
-
EMPTY
public static final int EMPTYThe empty property attribute.Used by getAttributes() and setAttributes().
- See Also:
-
READONLY
public static final int READONLYProperty attribute indicating assignment to this property is ignored.- See Also:
-
DONTENUM
public static final int DONTENUMProperty attribute indicating property is not enumerated.Only enumerated properties will be returned by getIds().
- See Also:
-
PERMANENT
public static final int PERMANENTProperty attribute indicating property cannot be deleted.- See Also:
-
UNINITIALIZED_CONST
public static final int UNINITIALIZED_CONSTProperty attribute indicating that this is a const property that has not been assigned yet. The first 'const' assignment to the property will clear this bit.- See Also:
-
CONST
public static final int CONST- See Also:
-
-
Constructor Details
-
ScriptableObject
public ScriptableObject() -
ScriptableObject
-
-
Method Details
-
buildDataDescriptor
protected static ScriptableObject buildDataDescriptor(Scriptable scope, Object value, int attributes) -
setCommonDescriptorProperties
protected void setCommonDescriptorProperties(int attributes, boolean defineWritable) -
getTypeOf
Gets the value that will be returned by calling the typeof operator on this object.- Returns:
- default is "object" unless
avoidObjectDetection()
istrue
in which case it returns "undefined"
-
getClassName
Return the name of the class.This is typically the same name as the constructor. Classes extending ScriptableObject must implement this abstract method.
- Specified by:
getClassName
in interfaceScriptable
-
has
Returns true if the named property is defined.- Specified by:
has
in interfaceScriptable
- Parameters:
name
- the name of the propertystart
- the object in which the lookup began- Returns:
- true if and only if the property was found in the object
- See Also:
-
has
Returns true if the property index is defined.- Specified by:
has
in interfaceScriptable
- Parameters:
index
- the numeric index for the propertystart
- the object in which the lookup began- Returns:
- true if and only if the property was found in the object
- See Also:
-
has
A version of "has" that supports symbols.- Specified by:
has
in interfaceSymbolScriptable
-
get
Returns the value of the named property or NOT_FOUND.If the property was created using defineProperty, the appropriate getter method is called.
- Specified by:
get
in interfaceScriptable
- Parameters:
name
- the name of the propertystart
- the object in which the lookup began- Returns:
- the value of the property (may be null), or NOT_FOUND
- See Also:
-
get
Returns the value of the indexed property or NOT_FOUND.- Specified by:
get
in interfaceScriptable
- Parameters:
index
- the numeric index for the propertystart
- the object in which the lookup began- Returns:
- the value of the property (may be null), or NOT_FOUND
- See Also:
-
get
Another version of Get that supports Symbol keyed properties.- Specified by:
get
in interfaceSymbolScriptable
-
put
Sets the value of the named property, creating it if need be.If the property was created using defineProperty, the appropriate setter method is called.
If the property's attributes include READONLY, no action is taken. This method will actually set the property in the start object.
- Specified by:
put
in interfaceScriptable
- Parameters:
name
- the name of the propertystart
- the object whose property is being setvalue
- value to set the property to- See Also:
-
put
Sets the value of the indexed property, creating it if need be.- Specified by:
put
in interfaceScriptable
- Parameters:
index
- the numeric index for the propertystart
- the object whose property is being setvalue
- value to set the property to- See Also:
-
put
Implementation of put required by SymbolScriptable objects.- Specified by:
put
in interfaceSymbolScriptable
-
delete
Removes a named property from the object.If the property is not found, or it has the PERMANENT attribute, no action is taken.
- Specified by:
delete
in interfaceScriptable
- Parameters:
name
- the name of the property- See Also:
-
delete
public void delete(int index) Removes the indexed property from the object.If the property is not found, or it has the PERMANENT attribute, no action is taken.
- Specified by:
delete
in interfaceScriptable
- Parameters:
index
- the numeric index for the property- See Also:
-
delete
Removes an object like the others, but using a Symbol as the key.- Specified by:
delete
in interfaceSymbolScriptable
-
putConst
Sets the value of the named const property, creating it if need be.If the property was created using defineProperty, the appropriate setter method is called.
If the property's attributes include READONLY, no action is taken. This method will actually set the property in the start object.
- Specified by:
putConst
in interfaceConstProperties
- Parameters:
name
- the name of the propertystart
- the object whose property is being setvalue
- value to set the property to- See Also:
-
defineConst
Description copied from interface:ConstProperties
Reserves a definition spot for a const. This will set up a definition of the const property, but set its value to undefined. The semantics of the start parameter is the same as for putConst.- Specified by:
defineConst
in interfaceConstProperties
- Parameters:
name
- The name of the property.start
- The object whose property is being reserved.
-
isConst
Returns true if the named property is defined as a const on this object.- Specified by:
isConst
in interfaceConstProperties
- Parameters:
name
-- Returns:
- true if the named property is defined as a const, false otherwise.
-
getAttributes
Deprecated.UsegetAttributes(String name)
. The engine always ignored the start argument. -
getAttributes
Deprecated.UsegetAttributes(int index)
. The engine always ignored the start argument. -
setAttributes
Deprecated.UsesetAttributes(String name, int attributes)
. The engine always ignored the start argument. -
setAttributes
Deprecated.UsesetAttributes(int index, int attributes)
. The engine always ignored the start argument. -
getAttributes
Get the attributes of a named property.The property is specified by
name
as defined forhas
.- Parameters:
name
- the identifier for the property- Returns:
- the bitset of attributes
- Throws:
EvaluatorException
- if the named property is not found- See Also:
-
getAttributes
public int getAttributes(int index) Get the attributes of an indexed property.- Parameters:
index
- the numeric index for the property- Returns:
- the bitset of attributes
- Throws:
EvaluatorException
- if the named property is not found is not found- See Also:
-
getAttributes
-
setAttributes
Set the attributes of a named property.The property is specified by
name
as defined forhas
.The possible attributes are READONLY, DONTENUM, and PERMANENT. Combinations of attributes are expressed by the bitwise OR of attributes. EMPTY is the state of no attributes set. Any unused bits are reserved for future use.
- Parameters:
name
- the name of the propertyattributes
- the bitset of attributes- Throws:
EvaluatorException
- if the named property is not found- See Also:
-
setAttributes
public void setAttributes(int index, int attributes) Set the attributes of an indexed property.- Parameters:
index
- the numeric index for the propertyattributes
- the bitset of attributes- Throws:
EvaluatorException
- if the named property is not found- See Also:
-
setAttributes
Set attributes of a Symbol-keyed property. -
setGetterOrSetter
Implement the legacy "__defineGetter__" and "__defineSetter__" methods. -
getGetterOrSetter
Get the getter or setter for a given property. Used by __lookupGetter__ and __lookupSetter__.- Parameters:
name
- Name of the object. If nonnull, index must be 0.index
- Index of the object. If nonzero, name must be null.scope
- the current scope.isSetter
- If true, return the setter, otherwise return the getter.- Returns:
- Undefined.instance if the property does not exist. Otherwise returns either the getter or the setter for the property, depending on the value of isSetter (may be undefined if unset).
- Throws:
IllegalArgumentException
- if both name and index are nonnull and nonzero respectively.
-
getGetterOrSetter
Deprecated.since 1.7.14. Use the form with the scope to ensure consistent function prototype handling in all cases.Get the getter or setter for a given property. Used by __lookupGetter__ and __lookupSetter__.- Parameters:
name
- Name of the object. If nonnull, index must be 0.index
- Index of the object. If nonzero, name must be null.isSetter
- If true, return the setter, otherwise return the getter.- Returns:
- Null if the property does not exist. Otherwise returns either the getter or the setter for the property, depending on the value of isSetter (may be undefined if unset).
- Throws:
IllegalArgumentException
- if both name and index are nonnull and nonzero respectively.
-
isGetterOrSetter
Returns whether a property is a getter or a setter- Parameters:
name
- property nameindex
- property indexsetter
- true to check for a setter, false for a getter- Returns:
- whether the property is a getter or a setter
-
setExternalArrayData
Attach the specified object to this object, and delegate all indexed property lookups to it. In other words, if the object has 3 elements, then an attempt to look up or modify "[0]", "[1]", or "[2]" will be delegated to this object. Additional indexed properties outside the range specified, and additional non-indexed properties, may still be added. The object specified must implement the ExternalArrayData interface.- Parameters:
array
- the List to use for delegated property access. Set this to null to revert back to regular property access.- Since:
- 1.7.6
-
getExternalArrayData
Return the array that was previously set by the call to "setExternalArrayData".- Returns:
- the array, or null if it was never set
- Since:
- 1.7.6
-
getExternalArrayLength
This is a function used by setExternalArrayData to dynamically get the "length" property value. -
getPrototype
Returns the prototype of the object.- Specified by:
getPrototype
in interfaceScriptable
- Returns:
- the prototype
-
setPrototype
Sets the prototype of the object.- Specified by:
setPrototype
in interfaceScriptable
- Parameters:
m
- the prototype to set
-
getParentScope
Returns the parent (enclosing) scope of the object.- Specified by:
getParentScope
in interfaceScriptable
- Returns:
- the parent scope
-
setParentScope
Sets the parent (enclosing) scope of the object.- Specified by:
setParentScope
in interfaceScriptable
- Parameters:
m
- the parent scope to set
-
getIds
Returns an array of ids for the properties of the object.Any properties with the attribute DONTENUM are not listed.
- Specified by:
getIds
in interfaceScriptable
- Returns:
- an array of java.lang.Objects with an entry for every listed property. Properties accessed via an integer index will have a corresponding Integer entry in the returned array. Properties accessed by a String will have a String entry in the returned array.
-
getAllIds
Returns an array of ids of all non-Symbol properties of the object.All non-Symbol properties, even those with attribute DONTENUM, are listed.
- Specified by:
getAllIds
in interfaceDebuggableObject
- Returns:
- an array of java.lang.Objects with an entry for every non-Symbol property. Properties accessed via an integer index will have a corresponding Integer entry in the returned array. Properties accessed by a String will have a String entry in the returned array.
-
getDefaultValue
Implements the [[DefaultValue]] internal method.Note that the toPrimitive conversion is a no-op for every type other than Object, for which [[DefaultValue]] is called. See ECMA 9.1.
A
hint
of null means "no hint".- Specified by:
getDefaultValue
in interfaceScriptable
- Parameters:
typeHint
- the type hint- Returns:
- the default value for the object
See ECMA 8.6.2.6.
-
getDefaultValue
-
hasInstance
Implements the instanceof operator.This operator has been proposed to ECMA.
- Specified by:
hasInstance
in interfaceScriptable
- Parameters:
instance
- The value that appeared on the LHS of the instanceof operator- Returns:
- true if "this" appears in value's prototype chain
-
avoidObjectDetection
public boolean avoidObjectDetection()Emulate the SpiderMonkey (and Firefox) feature of allowing custom objects to avoid detection by normal "object detection" code patterns. This is used to implement document.all. See https://bugzilla.mozilla.org/show_bug.cgi?id=412247. This is an analog to JOF_DETECTING from SpiderMonkey; see https://bugzilla.mozilla.org/show_bug.cgi?id=248549. Other than this special case, embeddings should return false.- Returns:
- true if this object should avoid object detection
- Since:
- 1.7R1
-
equivalentValues
Custom==
operator. Must returnScriptable.NOT_FOUND
if this object does not have custom equality operator for the given value,Boolean.TRUE
if this object is equivalent tovalue
,Boolean.FALSE
if this object is not equivalent tovalue
.The default implementation returns Boolean.TRUE if
this == value
orScriptable.NOT_FOUND
otherwise. It indicates that by default custom equality is available only ifvalue
isthis
in which case true is returned. -
defineClass
public static <T extends Scriptable> void defineClass(Scriptable scope, Class<T> clazz) throws IllegalAccessException, InstantiationException, InvocationTargetException Defines JavaScript objects from a Java class that implements Scriptable.If the given class has a method
static void init(Context cx, Scriptable scope, boolean sealed);
or its compatibility formstatic void init(Scriptable scope);
then it is invoked and no further initialization is done.However, if no such a method is found, then the class's constructors and methods are used to initialize a class in the following manner.
First, the zero-parameter constructor of the class is called to create the prototype. If no such constructor exists, a
EvaluatorException
is thrown.Next, all methods are scanned for special prefixes that indicate that they have special meaning for defining JavaScript objects. These special prefixes are
jsFunction_
for a JavaScript functionjsStaticFunction_
for a JavaScript function that is a property of the constructorjsGet_
for a getter of a JavaScript propertyjsSet_
for a setter of a JavaScript propertyjsConstructor
for a JavaScript function that is the constructor
If the method's name begins with "jsFunction_", a JavaScript function is created with a name formed from the rest of the Java method name following "jsFunction_". So a Java method named "jsFunction_foo" will define a JavaScript method "foo". Calling this JavaScript function will cause the Java method to be called. The parameters of the method must be of number and types as defined by the FunctionObject class. The JavaScript function is then added as a property of the prototype.
If the method's name begins with "jsStaticFunction_", it is handled similarly except that the resulting JavaScript function is added as a property of the constructor object. The Java method must be static.
If the method's name begins with "jsGet_" or "jsSet_", the method is considered to define a property. Accesses to the defined property will result in calls to these getter and setter methods. If no setter is defined, the property is defined as READONLY.
If the method's name is "jsConstructor", the method is considered to define the body of the constructor. Only one method of this name may be defined. You may use the varargs forms for constructors documented in
FunctionObject(String, Member, Scriptable)
If no method is found that can serve as constructor, a Java constructor will be selected to serve as the JavaScript constructor in the following manner. If the class has only one Java constructor, that constructor is used to define the JavaScript constructor. If the the class has two constructors, one must be the zero-argument constructor (otherwise an
EvaluatorException
would have already been thrown when the prototype was to be created). In this case the Java constructor with one or more parameters will be used to define the JavaScript constructor. If the class has three or more constructors, anEvaluatorException
will be thrown.Finally, if there is a method
static void finishInit(Scriptable scope, FunctionObject constructor, Scriptable prototype)
it will be called to finish any initialization. Thescope
argument will be passed, along with the newly created constructor and the newly created prototype.- Parameters:
scope
- The scope in which to define the constructor.clazz
- The Java class to use to define the JavaScript objects and properties.- Throws:
IllegalAccessException
- if access is not available to a reflected class memberInstantiationException
- if unable to instantiate the named classInvocationTargetException
- if an exception is thrown during execution of methods of the named class- See Also:
-
defineClass
public static <T extends Scriptable> void defineClass(Scriptable scope, Class<T> clazz, boolean sealed) throws IllegalAccessException, InstantiationException, InvocationTargetException Defines JavaScript objects from a Java class, optionally allowing sealing.Similar to
defineClass(Scriptable scope, Class clazz)
except that sealing is allowed. An object that is sealed cannot have properties added or removed. Note that sealing is not allowed in the current ECMA/ISO language specification, but is likely for the next version.- Parameters:
scope
- The scope in which to define the constructor.clazz
- The Java class to use to define the JavaScript objects and properties. The class must implement Scriptable.sealed
- Whether or not to create sealed standard objects that cannot be modified.- Throws:
IllegalAccessException
- if access is not available to a reflected class memberInstantiationException
- if unable to instantiate the named classInvocationTargetException
- if an exception is thrown during execution of methods of the named class- Since:
- 1.4R3
-
defineClass
public static <T extends Scriptable> String defineClass(Scriptable scope, Class<T> clazz, boolean sealed, boolean mapInheritance) throws IllegalAccessException, InstantiationException, InvocationTargetException Defines JavaScript objects from a Java class, optionally allowing sealing and mapping of Java inheritance to JavaScript prototype-based inheritance.Similar to
defineClass(Scriptable scope, Class clazz)
except that sealing and inheritance mapping are allowed. An object that is sealed cannot have properties added or removed. Note that sealing is not allowed in the current ECMA/ISO language specification, but is likely for the next version.- Parameters:
scope
- The scope in which to define the constructor.clazz
- The Java class to use to define the JavaScript objects and properties. The class must implement Scriptable.sealed
- Whether or not to create sealed standard objects that cannot be modified.mapInheritance
- Whether or not to map Java inheritance to JavaScript prototype-based inheritance.- Returns:
- the class name for the prototype of the specified class
- Throws:
IllegalAccessException
- if access is not available to a reflected class memberInstantiationException
- if unable to instantiate the named classInvocationTargetException
- if an exception is thrown during execution of methods of the named class- Since:
- 1.6R2
-
defineProperty
Define a JavaScript property.Creates the property with an initial value and sets its attributes.
- Parameters:
propertyName
- the name of the property to define.value
- the initial value of the propertyattributes
- the attributes of the JavaScript property- See Also:
-
defineProperty
A version of defineProperty that uses a Symbol key.- Parameters:
key
- symbol of the property to define.value
- the initial value of the propertyattributes
- the attributes of the JavaScript property
-
defineProperty
public static void defineProperty(Scriptable destination, String propertyName, Object value, int attributes) Utility method to add properties to arbitrary Scriptable object. If destination is instance of ScriptableObject, calls defineProperty there, otherwise calls put in destination ignoring attributes- Parameters:
destination
- ScriptableObject to define the property onpropertyName
- the name of the property to define.value
- the initial value of the propertyattributes
- the attributes of the JavaScript property
-
defineProperty
public void defineProperty(Scriptable scope, String name, int length, Callable target, int attributes, int propertyAttributes) Utility method to add lambda properties to arbitrary Scriptable object.- Parameters:
scope
- ScriptableObject to define the property onname
- the name of the property to define.length
- the arity of the functiontarget
- an object that implements the function in Java. Since Callable is a single-function interface this will typically be implemented as a lambda.attributes
- the attributes of the JavaScript propertypropertyAttributes
- Sets the attributes of the "name", "length", and "arity" properties of the internal LambdaFunction, which differ for many * native objects.
-
defineConstProperty
Utility method to add properties to arbitrary Scriptable object. If destination is instance of ScriptableObject, calls defineProperty there, otherwise calls put in destination ignoring attributes- Parameters:
destination
- ScriptableObject to define the property onpropertyName
- the name of the property to define.
-
defineProperty
Define a JavaScript property with getter and setter side effects.If the setter is not found, the attribute READONLY is added to the given attributes.
The getter must be a method with zero parameters, and the setter, if found, must be a method with one parameter.
- Parameters:
propertyName
- the name of the property to define. This name also affects the name of the setter and getter to search for. If the propertyId is "foo", thenclazz
will be searched for "getFoo" and "setFoo" methods.clazz
- the Java class to search for the getter and setterattributes
- the attributes of the JavaScript property- See Also:
-
defineProperty
public void defineProperty(String propertyName, Object delegateTo, Method getter, Method setter, int attributes) Define a JavaScript property.Use this method only if you wish to define getters and setters for a given property in a ScriptableObject. To create a property without special getter or setter side effects, use
defineProperty(String,int)
.If
setter
is null, the attribute READONLY is added to the given attributes.Several forms of getters or setters are allowed. In all cases the type of the value parameter can be any one of the following types: Object, String, boolean, Scriptable, byte, short, int, long, float, or double. The runtime will perform appropriate conversions based upon the type of the parameter (see description in FunctionObject). The first forms are nonstatic methods of the class referred to by 'this':
Object getFoo(); void setFoo(SomeType value);
Next are static methods that may be of any class; the object whose property is being accessed is passed in as an extra argument:static Object getFoo(Scriptable obj); static void setFoo(Scriptable obj, SomeType value);
Finally, it is possible to delegate to another object entirely using thedelegateTo
parameter. In this case the methods are nonstatic methods of the class delegated to, and the object whose property is being accessed is passed in as an extra argument:Object getFoo(Scriptable obj); void setFoo(Scriptable obj, SomeType value);
- Parameters:
propertyName
- the name of the property to define.delegateTo
- an object to call the getter and setter methods on, or null, depending on the form used above.getter
- the method to invoke to get the value of the propertysetter
- the method to invoke to set the value of the propertyattributes
- the attributes of the JavaScript property
-
defineOwnProperties
Defines one or more properties on this object.- Parameters:
cx
- the current Contextprops
- a map of property ids to property descriptors
-
defineOwnProperty
Defines a property on an object.- Parameters:
cx
- the current Contextid
- the name/index of the propertydesc
- the new property descriptor, as described in 8.6.1
-
defineOwnProperty
Defines a property on an object.Based on [[DefineOwnProperty]] from 8.12.10 of the spec.
- Parameters:
cx
- the current Contextid
- the name/index of the propertydesc
- the new property descriptor, as described in 8.6.1checkValid
- whether to perform validity checks
-
defineProperty
public void defineProperty(String name, Supplier<Object> getter, Consumer<Object> setter, int attributes) Define a property on this object that is implemented using lambda functions. If a property with the same name already exists, then it will be replaced. This property will appear to the JavaScript user exactly like any other property -- unlike Function properties and those based on reflection, the property descriptor will only reflect the value as defined by this function.- Parameters:
name
- the name of the functiongetter
- a function that returns the value of the property. If null, then the previous version of the value will be returned.setter
- a function that sets the value of the property. If null, then the value will be set directly and may not be retrieved by the getter.attributes
- the attributes to set on the property
-
defineProperty
public void defineProperty(Context cx, String name, Function<Scriptable, Object> getter, BiConsumer<Scriptable, Object> setter, int attributes) Define a property on this object that is implemented using lambda functions accepting Scriptable `this` object as first parameter. Unlike with `defineProperty(String name, Supplier- Parameters:
name
- the name of the propertygetter
- a function that given Scriptable `this` returns the value of the property. If null, throws typeErrorsetter
- a function that Scriptable `this` and a value sets the value of the property, by calling appropriate method on `this`. If null, then the value will be set directly and may not be retrieved by the getter.attributes
- the attributes to set on the property
-
checkPropertyDefinition
-
checkPropertyChange
-
isTrue
-
isFalse
-
sameValue
Implements SameValue as described in ES5 9.12, additionally checking if new value is defined.- Parameters:
newValue
- the new valuecurrentValue
- the current value- Returns:
- true if values are the same as defined by ES5 9.12
-
applyDescriptorToAttributeBitset
-
isDataDescriptor
Implements IsDataDescriptor as described in ES5 8.10.2- Parameters:
desc
- a property descriptor- Returns:
- true if this is a data descriptor.
-
isAccessorDescriptor
Implements IsAccessorDescriptor as described in ES5 8.10.1- Parameters:
desc
- a property descriptor- Returns:
- true if this is an accessor descriptor.
-
isGenericDescriptor
Implements IsGenericDescriptor as described in ES5 8.10.3- Parameters:
desc
- a property descriptor- Returns:
- true if this is a generic descriptor.
-
ensureScriptable
-
ensureSymbolScriptable
-
ensureScriptableObject
-
defineFunctionProperties
Search for names in a class, adding the resulting methods as properties.Uses reflection to find the methods of the given names. Then FunctionObjects are constructed from the methods found, and are added to this object as properties with the given names.
- Parameters:
names
- the names of the Methods to add as function propertiesclazz
- the class to search for the Methodsattributes
- the attributes of the new properties- See Also:
-
getObjectPrototype
Get the Object.prototype property. See ECMA 15.2.4.- Parameters:
scope
- an object in the scope chain
-
getFunctionPrototype
Get the Function.prototype property. See ECMA 15.3.4.- Parameters:
scope
- an object in the scope chain
-
getGeneratorFunctionPrototype
-
getArrayPrototype
-
getClassPrototype
Get the prototype for the named class.For example,
getClassPrototype(s, "Date")
will first walk up the parent chain to find the outermost scope, then will search that scope for the Date constructor, and then will return Date.prototype. If any of the lookups fail, or the prototype is not a JavaScript object, then null will be returned.- Parameters:
scope
- an object in the scope chainclassName
- the name of the constructor- Returns:
- the prototype for the named class, or null if it cannot be found.
-
getTopLevelScope
Get the global scope.Walks the parent scope chain to find an object with a null parent scope (the global object).
- Parameters:
obj
- a JavaScript object- Returns:
- the corresponding global scope
-
isExtensible
public boolean isExtensible() -
preventExtensions
public void preventExtensions() -
sealObject
public void sealObject()Seal this object.It is an error to add properties to or delete properties from a sealed object. It is possible to change the value of an existing property. Once an object is sealed it may not be unsealed.
- Since:
- 1.4R3
-
isSealed
public final boolean isSealed()Return true if this object is sealed.- Returns:
- true if sealed, false otherwise.
- Since:
- 1.4R3
- See Also:
-
getProperty
Gets a named property from an object or any object in its prototype chain.Searches the prototype chain for a property named
name
.- Parameters:
obj
- a JavaScript objectname
- a property name- Returns:
- the value of a property with name
name
found inobj
or any object in its prototype chain, orScriptable.NOT_FOUND
if not found - Since:
- 1.5R2
-
getProperty
This is a version of getProperty that works with Symbols. -
getTypedProperty
Gets an indexed property from an object or any object in its prototype chain and coerces it to the requested Java type.Searches the prototype chain for a property with integral index
index
. Note that if you wish to look for properties with numerical but non-integral indicies, you should use getProperty(Scriptable,String) with the string value of the index.- Parameters:
s
- a JavaScript objectindex
- an integral indextype
- the required Java type of the result- Returns:
- the value of a property with name
name
found inobj
or any object in its prototype chain, or null if not found. Note that it does not returnScriptable.NOT_FOUND
as it can ordinarily not be converted to most of the types. - Since:
- 1.7R3
-
getProperty
Gets an indexed property from an object or any object in its prototype chain.Searches the prototype chain for a property with integral index
index
. Note that if you wish to look for properties with numerical but non-integral indicies, you should use getProperty(Scriptable,String) with the string value of the index.- Parameters:
obj
- a JavaScript objectindex
- an integral index- Returns:
- the value of a property with index
index
found inobj
or any object in its prototype chain, orScriptable.NOT_FOUND
if not found - Since:
- 1.5R2
-
getTypedProperty
Gets a named property from an object or any object in its prototype chain and coerces it to the requested Java type.Searches the prototype chain for a property named
name
.- Parameters:
s
- a JavaScript objectname
- a property nametype
- the required Java type of the result- Returns:
- the value of a property with name
name
found inobj
or any object in its prototype chain, or null if not found. Note that it does not returnScriptable.NOT_FOUND
as it can ordinarily not be converted to most of the types. - Since:
- 1.7R3
-
hasProperty
Returns whether a named property is defined in an object or any object in its prototype chain.Searches the prototype chain for a property named
name
.- Parameters:
obj
- a JavaScript objectname
- a property name- Returns:
- the true if property was found
- Since:
- 1.5R2
-
redefineProperty
If hasProperty(obj, name) would return true, then if the property that was found is compatible with the new property, this method just returns. If the property is not compatible, then an exception is thrown.A property redefinition is incompatible if the first definition was a const declaration or if this one is. They are compatible only if neither was const.
-
hasProperty
Returns whether an indexed property is defined in an object or any object in its prototype chain.Searches the prototype chain for a property with index
index
.- Parameters:
obj
- a JavaScript objectindex
- a property index- Returns:
- the true if property was found
- Since:
- 1.5R2
-
hasProperty
A version of hasProperty for properties with Symbol keys. -
putProperty
Puts a named property in an object or in an object in its prototype chain.Searches for the named property in the prototype chain. If it is found, the value of the property in
obj
is changed through a call toScriptable.put(String, Scriptable, Object)
on the prototype passingobj
as thestart
argument. This allows the prototype to veto the property setting in case the prototype defines the property with [[ReadOnly]] attribute. If the property is not found, it is added inobj
.- Parameters:
obj
- a JavaScript objectname
- a property namevalue
- any JavaScript value accepted by Scriptable.put- Since:
- 1.5R2
-
putProperty
This is a version of putProperty for Symbol keys. -
putConstProperty
Puts a named property in an object or in an object in its prototype chain.Searches for the named property in the prototype chain. If it is found, the value of the property in
obj
is changed through a call toScriptable.put(String, Scriptable, Object)
on the prototype passingobj
as thestart
argument. This allows the prototype to veto the property setting in case the prototype defines the property with [[ReadOnly]] attribute. If the property is not found, it is added inobj
.- Parameters:
obj
- a JavaScript objectname
- a property namevalue
- any JavaScript value accepted by Scriptable.put- Since:
- 1.5R2
-
putProperty
Puts an indexed property in an object or in an object in its prototype chain.Searches for the indexed property in the prototype chain. If it is found, the value of the property in
obj
is changed through a call toScriptable.put(int, Scriptable, Object)
on the prototype passingobj
as thestart
argument. This allows the prototype to veto the property setting in case the prototype defines the property with [[ReadOnly]] attribute. If the property is not found, it is added inobj
.- Parameters:
obj
- a JavaScript objectindex
- a property indexvalue
- any JavaScript value accepted by Scriptable.put- Since:
- 1.5R2
-
deleteProperty
Removes the property from an object or its prototype chain.Searches for a property with
name
in obj or its prototype chain. If it is found, the object's delete method is called.- Parameters:
obj
- a JavaScript objectname
- a property name- Returns:
- true if the property doesn't exist or was successfully removed
- Since:
- 1.5R2
-
deleteProperty
Removes the property from an object or its prototype chain.Searches for a property with
index
in obj or its prototype chain. If it is found, the object's delete method is called.- Parameters:
obj
- a JavaScript objectindex
- a property index- Returns:
- true if the property doesn't exist or was successfully removed
- Since:
- 1.5R2
-
getPropertyIds
Returns an array of all ids from an object and its prototypes.- Parameters:
obj
- a JavaScript object- Returns:
- an array of all ids from all object in the prototype chain. If a given id occurs multiple times in the prototype chain, it will occur only once in this list.
- Since:
- 1.5R2
-
callMethod
Call a method of an object.- Parameters:
obj
- the JavaScript objectmethodName
- the name of the function propertyargs
- the arguments for the call- See Also:
-
callMethod
Call a method of an object.- Parameters:
cx
- the Context object associated with the current thread.obj
- the JavaScript objectmethodName
- the name of the function propertyargs
- the arguments for the call
-
getAssociatedValue
Get arbitrary application-specific value associated with this object.- Parameters:
key
- key object to select particular value.- See Also:
-
getTopScopeValue
Get arbitrary application-specific value associated with the top scope of the given scope. The method first callsgetTopLevelScope(Scriptable scope)
and then searches the prototype chain of the top scope for the first object containing the associated value with the given key.- Parameters:
scope
- the starting scope.key
- key object to select particular value.- See Also:
-
associateValue
Associate arbitrary application-specific value with this object. Value can only be associated with the given object and key only once. The method ignores any subsequent attempts to change the already associated value.The associated values are not serialized.
- Parameters:
key
- key object to select particular value.value
- the value to associate- Returns:
- the passed value if the method is called first time for the given key or old value for any subsequent calls.
- See Also:
-
getOwnPropertyDescriptor
-
querySlot
-
size
public int size() -
isEmpty
public boolean isEmpty() -
get
-
getAttributes(int index)
.