Package org.mozilla.javascript
Class Ref
- java.lang.Object
- 
- org.mozilla.javascript.Ref
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public abstract class Ref extends java.lang.Object implements java.io.SerializableGeneric notion of reference object that know how to query/modify the target objects based on some property/index.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description Ref()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleandelete(Context cx)abstract java.lang.Objectget(Context cx)booleanhas(Context cx)abstract java.lang.Objectset(Context cx, java.lang.Object value)Deprecated.Useset(Context, Scriptable, Object)insteadjava.lang.Objectset(Context cx, Scriptable scope, java.lang.Object value)
 
- 
- 
- 
Method Detail- 
haspublic boolean has(Context cx) 
 - 
getpublic abstract java.lang.Object get(Context cx) 
 - 
set@Deprecated public abstract java.lang.Object set(Context cx, java.lang.Object value) Deprecated.Useset(Context, Scriptable, Object)instead
 - 
setpublic java.lang.Object set(Context cx, Scriptable scope, java.lang.Object value) 
 - 
deletepublic boolean delete(Context cx) 
 
- 
 
-