JavaScript API Reference for Oracle ADF Faces
Oracle Fusion Middleware JavaScript API Reference for Oracle ADF Faces
11g Release 2 (11.1.2.0.0)
E17489-01
PREV NEXT
FRAMES NO FRAMES All Classes Warning: private items are visible
SUMMARY: FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD
org.ecmascript.object
Class Arguments
org.ecmascript.object.Object
|
+--org.ecmascript.object.Arguments
public abstract class Arguments
extends Object
The native browser JavaScript object that is created when control enters an execution context for function code. References to this object are made using the keyword arguments
.
Note that this object is implemented and supported by the web browser and results of its use may vary.
Field Summary
public static Function
callee
Deprecated: use a named function like functionFoo()
instead of arguments.callee()
public static Function
caller
Deprecated: use the caller of a named function like functionFoo.caller
instead of arguments.callee.caller
public static Number
length
The number of actual parameter values supplied by the caller (not the expected number of arguments).
public static Function callee
The Function object being executed. This allows anonymous functions to be recursive.
Deprecated: use a named function like functionFoo()
instead of arguments.callee()
public static Function caller
The Function object being executed when the current Function was executed or undefined
if the function is a top-level Function.
Deprecated: use the caller of a named function like functionFoo.caller
instead of arguments.callee.caller
See also:
Function.caller
public static Number length
The number of actual parameter values supplied by the caller (not the expected number of arguments).
See also:
Function.length
SUMMARY: FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD
Oracle Fusion Middleware JavaScript API Reference for Oracle ADF Faces
11g Release 2 (11.1.2.0.0)
E17489-01
PREV NEXT
FRAMES NO FRAMES All Classes Warning: private items are visible
Generated on 2011.04.27 02:28 UTC
Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.