| java.lang.Object org.mozilla.javascript.NativeWith
All known Subclasses: org.mozilla.javascript.xml.impl.xmlbeans.XMLWithScope, org.mozilla.javascript.xmlimpl.XMLWithScope,
NativeWith | public class NativeWith implements Scriptable,IdFunctionCall,Serializable(Code) | | This class implements the object lookup required for the
with statement.
It simply delegates every action to its prototype except
for operations on its parent.
|
Method Summary | |
public void | delete(String id) | public void | delete(int index) | public Object | execIdCall(IdFunctionObject f, Context cx, Scriptable scope, Scriptable thisObj, Object[] args) | public Object | get(String id, Scriptable start) | public Object | get(int index, Scriptable start) | public String | getClassName() | public Object | getDefaultValue(Class typeHint) | public Object[] | getIds() | public Scriptable | getParentScope() | public Scriptable | getPrototype() | public boolean | has(String id, Scriptable start) | public boolean | has(int index, Scriptable start) | public boolean | hasInstance(Scriptable value) | static void | init(Scriptable scope, boolean sealed) | static boolean | isWithFunction(Object functionObj) | static Object | newWithSpecial(Context cx, Scriptable scope, Object[] args) | public void | put(String id, Scriptable start, Object value) | public void | put(int index, Scriptable start, Object value) | public void | setParentScope(Scriptable parent) | public void | setPrototype(Scriptable prototype) | protected Object | updateDotQuery(boolean value) Must return null to continue looping or the final collection result. |
delete | public void delete(int index)(Code) | | |
isWithFunction | static boolean isWithFunction(Object functionObj)(Code) | | |
updateDotQuery | protected Object updateDotQuery(boolean value)(Code) | | Must return null to continue looping or the final collection result.
|
|
|