Package org.mozilla.javascript
Class WrapFactory
java.lang.Object
org.mozilla.javascript.WrapFactory
Embeddings that wish to provide their own custom wrappings for Java objects may extend this class
and call
Context.setWrapFactory(WrapFactory)
Once an instance of this class or an
extension of this class is enabled for a given context (by calling setWrapFactory on that
context), Rhino will call the methods of this class whenever it needs to wrap a value resulting
from a call to a Java method or an access to a Java field.- Since:
- 1.5 Release 4
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Returnfalse
if result of Java method, which is instance ofString
,Number
,Boolean
andCharacter
, should be used directly as JavaScript primitive type.final void
setJavaPrimitiveWrap
(boolean value) wrap
(Context cx, Scriptable scope, Object obj, Class<?> staticType) Wrap the object.wrapAsJavaObject
(Context cx, Scriptable scope, Object javaObject, Class<?> staticType) Wrap Java object as Scriptable instance to allow full access to its methods and fields from JavaScript.wrapJavaClass
(Context cx, Scriptable scope, Class<?> javaClass) Wrap a Java class as Scriptable instance to allow access to its static members and fields and use as constructor from JavaScript.wrapNewObject
(Context cx, Scriptable scope, Object obj) Wrap an object newly created by a constructor call.
-
Constructor Details
-
WrapFactory
public WrapFactory()
-
-
Method Details
-
wrap
Wrap the object.The value returned must be one of
- java.lang.Boolean
- java.lang.String
- java.lang.Number
- org.mozilla.javascript.Scriptable objects
- The value returned by Context.getUndefinedValue()
- null
- Parameters:
cx
- the current Context for this threadscope
- the scope of the executing scriptobj
- the object to be wrapped. Note it can be null.staticType
- type hint. If security restrictions prevent to wrap object based on its class, staticType will be used instead.- Returns:
- the wrapped value.
-
wrapNewObject
Wrap an object newly created by a constructor call.- Parameters:
cx
- the current Context for this threadscope
- the scope of the executing scriptobj
- the object to be wrapped- Returns:
- the wrapped value.
-
wrapAsJavaObject
public Scriptable wrapAsJavaObject(Context cx, Scriptable scope, Object javaObject, Class<?> staticType) Wrap Java object as Scriptable instance to allow full access to its methods and fields from JavaScript.wrap(Context, Scriptable, Object, Class)
andwrapNewObject(Context, Scriptable, Object)
call this method when they can not convertjavaObject
to JavaScript primitive value or JavaScript array.Subclasses can override the method to provide custom wrappers for Java objects.
- Parameters:
cx
- the current Context for this threadscope
- the scope of the executing scriptjavaObject
- the object to be wrappedstaticType
- type hint. If security restrictions prevent to wrap object based on its class, staticType will be used instead.- Returns:
- the wrapped value which shall not be null
-
wrapJavaClass
Wrap a Java class as Scriptable instance to allow access to its static members and fields and use as constructor from JavaScript.Subclasses can override this method to provide custom wrappers for Java classes.
- Parameters:
cx
- the current Context for this threadscope
- the scope of the executing scriptjavaClass
- the class to be wrapped- Returns:
- the wrapped value which shall not be null
- Since:
- 1.7R3
-
isJavaPrimitiveWrap
public final boolean isJavaPrimitiveWrap()Returnfalse
if result of Java method, which is instance ofString
,Number
,Boolean
andCharacter
, should be used directly as JavaScript primitive type. By default the method returns true to indicate that instances ofString
,Number
,Boolean
andCharacter
should be wrapped as any other Java object and scripts can access any Java method available in these objects. UsesetJavaPrimitiveWrap(boolean)
to change this. -
setJavaPrimitiveWrap
public final void setJavaPrimitiveWrap(boolean value) - See Also:
-