Class JSArray
- java.lang.Object
-
- org.fife.rsta.ac.js.ecma.api.ecma3.JSArray
-
- All Implemented Interfaces:
JSArrayFunctions,JSObjectFunctions
- Direct Known Subclasses:
JS5Array
public abstract class JSArray extends java.lang.Object implements JSArrayFunctions
Object Array- Since:
- Standard ECMA-262 3rd. Edition
-
-
Field Summary
Fields Modifier and Type Field Description protected JSFunctionconstructorproperty constructorJSNumberlengthproperty lengthJSArrayprototypeproperty prototype
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSArrayFunctions
concat, join, pop, push, reverse, shift, slice, sort, splice, unshift
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSObjectFunctions
hasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOf
-
-
-
-
Field Detail
-
length
public JSNumber length
property length- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Number
-
prototype
public JSArray prototype
property prototype- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Array
-
constructor
protected JSFunction constructor
property constructor- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Function
-
-
Constructor Detail
-
JSArray
public JSArray()
Object Array()- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
-
JSArray
public JSArray(JSNumber size)
Object Array(size)- Parameters:
size- The desired number of elements in the array. The returned value has its length field set to size- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
-
-