public class BaseFunction extends IdScriptableObject implements Function
CONST, DONTENUM, EMPTY, PERMANENT, READONLY, UNINITIALIZED_CONSTNOT_FOUND| Constructor and Description |
|---|
BaseFunction() |
BaseFunction(Scriptable scope,
Scriptable prototype) |
| Modifier and Type | Method and Description |
|---|---|
Object |
call(Context cx,
Scriptable scope,
Scriptable thisObj,
Object[] args)
Should be overridden.
|
Scriptable |
construct(Context cx,
Scriptable scope,
Object[] args)
Call the function as a constructor.
|
Scriptable |
createObject(Context cx,
Scriptable scope)
Creates new script object.
|
Object |
execIdCall(IdFunctionObject f,
Context cx,
Scriptable scope,
Scriptable thisObj,
Object[] args)
'thisObj' will be null if invoked as constructor, in which case
instance of Scriptable should be returned.
|
protected void |
fillConstructorProperties(IdFunctionObject ctor) |
protected int |
findInstanceIdInfo(String s)
Map name to id of instance property.
|
protected int |
findPrototypeId(String s) |
int |
getArity() |
String |
getClassName()
Return the name of the class.
|
protected Scriptable |
getClassPrototype() |
String |
getFunctionName() |
protected String |
getInstanceIdName(int id)
Map id back to property name it defines.
|
protected Object |
getInstanceIdValue(int id)
Get id value.
|
int |
getLength() |
protected int |
getMaxInstanceId()
Get maximum id findInstanceIdInfo can generate.
|
boolean |
hasInstance(Scriptable instance)
Implements the instanceof operator for JavaScript Function objects.
|
protected void |
initPrototypeId(int id) |
void |
setImmunePrototypeProperty(Object value)
Make value as DontEnum, DontDelete, ReadOnly
prototype property of this Function object
|
protected void |
setInstanceIdValue(int id,
Object value)
Set or delete id value.
|
activatePrototypeMap, addIdFunctionProperty, defaultGet, defaultPut, delete, exportAsJSClass, get, getAttributes, has, hasPrototypeMap, incompatibleCallError, initPrototypeConstructor, initPrototypeMethod, initPrototypeValue, instanceIdInfo, put, setAttributesassociateValue, avoidObjectDetection, callMethod, callMethod, defineClass, defineClass, defineClass, defineConst, defineConstProperty, defineFunctionProperties, defineProperty, defineProperty, defineProperty, defineProperty, delete, deleteProperty, deleteProperty, equivalentValues, get, getAllIds, getAssociatedValue, getAttributes, getAttributes, getAttributes, getClassPrototype, getDefaultValue, getDefaultValue, getFunctionPrototype, getGetterOrSetter, getIds, getObjectPrototype, getParentScope, getProperty, getProperty, getPropertyIds, getPrototype, getTopLevelScope, getTopScopeValue, has, hasProperty, hasProperty, isConst, isGetterOrSetter, isSealed, put, putConst, putConstProperty, putProperty, putProperty, redefineProperty, sealObject, setAttributes, setAttributes, setAttributes, setGetterOrSetter, setParentScope, setPrototypeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdelete, delete, get, get, getDefaultValue, getIds, getParentScope, getPrototype, has, has, put, put, setParentScope, setPrototypepublic BaseFunction()
public BaseFunction(Scriptable scope, Scriptable prototype)
public String getClassName()
ScriptableObjectgetClassName in interface ScriptablegetClassName in class ScriptableObjectpublic boolean hasInstance(Scriptable instance)
foo = new Foo();
foo instanceof Foo; // true
hasInstance in interface ScriptablehasInstance in class ScriptableObjectinstance - The value that appeared on the LHS of the instanceof
operatorprotected int getMaxInstanceId()
IdScriptableObjectgetMaxInstanceId in class IdScriptableObjectprotected int findInstanceIdInfo(String s)
IdScriptableObjectIdScriptableObject.instanceIdInfo(int, int).findInstanceIdInfo in class IdScriptableObjectprotected String getInstanceIdName(int id)
IdScriptableObjectgetInstanceIdName in class IdScriptableObjectprotected Object getInstanceIdValue(int id)
IdScriptableObjectgetInstanceIdValue in class IdScriptableObjectprotected void setInstanceIdValue(int id,
Object value)
IdScriptableObjectsetInstanceIdValue in class IdScriptableObjectprotected void fillConstructorProperties(IdFunctionObject ctor)
fillConstructorProperties in class IdScriptableObjectprotected void initPrototypeId(int id)
initPrototypeId in class IdScriptableObjectpublic Object execIdCall(IdFunctionObject f, Context cx, Scriptable scope, Scriptable thisObj, Object[] args)
IdScriptableObjectexecIdCall in interface IdFunctionCallexecIdCall in class IdScriptableObjectpublic void setImmunePrototypeProperty(Object value)
protected Scriptable getClassPrototype()
public Object call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args)
call in interface Callablecall in interface Functioncx - the current Context for this threadscope - the scope to execute the function relative to. This is
set to the value returned by getParentScope() except
when the function is called from a closure.thisObj - the JavaScript this objectargs - the array of argumentspublic Scriptable construct(Context cx, Scriptable scope, Object[] args)
Functionnew operator. This method is
expected to create a new object and return it.public Scriptable createObject(Context cx, Scriptable scope)
construct(org.mozilla.javascript.Context, org.mozilla.javascript.Scriptable, java.lang.Object[]) uses the method to
to get the value for thisObj argument when invoking
call(org.mozilla.javascript.Context, org.mozilla.javascript.Scriptable, org.mozilla.javascript.Scriptable, java.lang.Object[]).
The methos is allowed to return null to indicate that
call(org.mozilla.javascript.Context, org.mozilla.javascript.Scriptable, org.mozilla.javascript.Scriptable, java.lang.Object[]) will create a new object itself. In this case
construct(org.mozilla.javascript.Context, org.mozilla.javascript.Scriptable, java.lang.Object[]) will set scope and prototype on the result
call(org.mozilla.javascript.Context, org.mozilla.javascript.Scriptable, org.mozilla.javascript.Scriptable, java.lang.Object[]) unless they are already set.public int getArity()
public int getLength()
public String getFunctionName()
protected int findPrototypeId(String s)
findPrototypeId in class IdScriptableObjectCopyright © 2015–2017 The veraPDF Consortium. All rights reserved.