org.mozilla.javascript
Interface WrapHandler


Deprecated. As of Rhino 1.5 Release 4, use WrapFactory. Note that when extending WrapFactory you should call super.wrap(...) instead of returning null to get default behavior. You should also take into account that WrapFactory.wrap(Context cx, Scriptable scope, Object obj, Class cls) can be called when obj == null

public interface WrapHandler


Method Summary
 java.lang.Object wrap(Scriptable scope, java.lang.Object obj, java.lang.Class staticType)
          Deprecated.  
 

Method Detail

wrap

public java.lang.Object wrap(Scriptable scope,
                             java.lang.Object obj,
                             java.lang.Class staticType)
Deprecated.