Java Doc for OArray.java in  » Scripting » oscript-2.10.4 » oscript » data » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Scripting » oscript 2.10.4 » oscript.data 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   oscript.data.Value
      oscript.data.OObject
         oscript.data.OArray

OArray
public class OArray extends OObject implements java.io.Externalizable,MemberTable(Code)
An array instance.
author:
   Rob Clark (rob@ti.com)

Inner Class :public static class OJavaArray extends OArray

Field Summary
final public static  String[]MEMBER_NAMES
    
final public static  StringPARENT_TYPE_NAME
    
final public static  ValueTYPE
     The type object for an instance of Array.
final public static  StringTYPE_NAME
    
final public  Valueconcat
     Join this array object with one or more additional arrays.
final public  Valuepush
     Add one or more elements to the end of the array, returning the new length.
final public  Valuesplice
     Add and remove elements from an array
Parameters:
  idx - the index to begin removing from
Parameters:
  num - the number of elements to remove (optional, defaults toeverything after idx) args...
final public  Valueunshift
     Add one or more elements to the beginning of the array, returning the new length.

Constructor Summary
public  OArray()
     Class Constructor.
public  OArray(int initialLength)
     private constructor, used internally and by compiler...
public  OArray(Reference[] arr, int size)
     Class Constructor.
public  OArray(oscript.util.MemberTable args)
     Class Constructor.
public  OArray(Value[] args)
     Class Constructor.

Method Summary
public  ObjectcastToJavaObject()
     Convert this object to a native java Object value.
public  StringcastToString()
     Convert this object to a native java String value.
public  ValueelementAt(Value idx)
     Get the specified index of this object, if this object is an array.
public synchronized  ValueelementAt(int idx)
    
public  ValueelementsAt(Value idx1, Value idx2)
     Get the specified range of this object, if this object is an array.
public  ValueelementsAt(int idx1, int idx2)
    
final public  voidensureCapacity(int sz)
    
public  Valueevery(Value fxn)
     Executes the provided function fxn once for each element present in the array until it finds one where callback returns false.
public static  voidfillByteArray(byte[] arr)
    
public static  voidfillCharacterArray(char[] arr)
    
public static  voidfillDoubleArray(double[] arr)
    
public static  voidfillFloatArray(float[] arr)
    
public static  voidfillIntegerArray(int[] arr)
    
public static  voidfillLongArray(long[] arr)
    
public static  voidfillShortArray(short[] arr)
    
public  Valuefilter(Value fxn)
     Create a new array with all elements that pass the test implemented by the provided function.
public  voidforEach(Value fxn)
     Executes a provided function once per array element.
public  voidfree()
    
protected  ValuegetTypeImpl()
     Get the type of this object.
public  java.util.Iteratoriterator()
     Get an iterator of all the elements of this array.
public  Valuejoin()
    
public  Valuejoin(Value separator)
     Join all elements in the array into a single string, separated by the specified separator.
public  intlength()
     For types that implement elementAt, this returns the number of elements.
final public static  OArraymakeArray(Object arrObject)
    
public  Valuemap(Value fxn)
     Creates a new array with the results of calling a provided function on every element in this array.
public synchronized  Valuepop()
     Remove and return the last element of the array.
public  voidpush1(Value val)
    
public  voidpush2(Value val1, Value val2)
    
public  voidpush3(Value val1, Value val2, Value val3)
    
public  voidpush4(Value val1, Value val2, Value val3, Value val4)
    
public  voidreadExternal(java.io.ObjectInput in)
     Derived class that implements java.io.Externalizable must call this if it overrides it.
final public  ReferencereferenceAt(int idx)
    
final public  ReferencereferenceAt(int idx, int attr)
    
public  voidreset()
    
public synchronized  Valuereverse()
     Reverse the order of elements in this array, returning this array.
public  MemberTablesafeCopy()
    
public synchronized  Valueshift()
     Remove and return the first element of the array.
public  Valueslice(Value begin)
     Slice out a section of the array.
public  Valueslice(Value begin, Value end)
     Slice out a section of the array.
public  Valuesome(Value fxn)
     Tests whether some element in the array passes the test implemented by the provided function.
public  Valuesort()
     Sort the elements in the array, by converting each element to string, and sorting in ascending order.
public synchronized  Valuesort(Value fxn)
     Sort the elements in the array, by using the specified comparision function.
public  voidwriteExternal(java.io.ObjectOutput out)
     Derived class that implements java.io.Externalizable must call this if it overrides it.

Field Detail
MEMBER_NAMES
final public static String[] MEMBER_NAMES(Code)



PARENT_TYPE_NAME
final public static String PARENT_TYPE_NAME(Code)



TYPE
final public static Value TYPE(Code)
The type object for an instance of Array.



TYPE_NAME
final public static String TYPE_NAME(Code)



concat
final public Value concat(Code)
Join this array object with one or more additional arrays. This performs a shallow copy, so the original arrays are unmodified, but for mutable objects there may be side effects.



push
final public Value push(Code)
Add one or more elements to the end of the array, returning the new length.



splice
final public Value splice(Code)
Add and remove elements from an array
Parameters:
  idx - the index to begin removing from
Parameters:
  num - the number of elements to remove (optional, defaults toeverything after idx) args... optional additional arguments to replace the removedelements the removed elements



unshift
final public Value unshift(Code)
Add one or more elements to the beginning of the array, returning the new length.




Constructor Detail
OArray
public OArray()(Code)
Class Constructor.



OArray
public OArray(int initialLength)(Code)
private constructor, used internally and by compiler... initialLength == -1 is used to create arrays that wrap native java arrays, rather than having to do a copy when an array is passed from java to script. For java arrays, arr should equal null, so methods that don't work for java arrays know to throw an exception... ugly, but it works



OArray
public OArray(Reference[] arr, int size)(Code)
Class Constructor. This constructor is not intended for public consumption... it is just used by StackFrame$StackFrameArray for quickly making a safe-copy when already copied out of the stack



OArray
public OArray(oscript.util.MemberTable args)(Code)
Class Constructor. This is the constructor that is called via a BuiltinType instance.
Parameters:
  args - arguments to this constructor
throws:
  PackagedScriptObjectException - (Exception) if wrong number of args



OArray
public OArray(Value[] args)(Code)
Class Constructor. This is the constructor that is called via a BuiltinType instance.
Parameters:
  args - arguments to this constructor
throws:
  PackagedScriptObjectException - (Exception) if wrong number of args




Method Detail
castToJavaObject
public Object castToJavaObject() throws PackagedScriptObjectException(Code)
Convert this object to a native java Object value. a java object
throws:
  PackagedScriptObjectException - (NoSuchMemberException)



castToString
public String castToString() throws PackagedScriptObjectException(Code)
Convert this object to a native java String value. a String value
throws:
  PackagedScriptObjectException - (NoSuchMethodException)



elementAt
public Value elementAt(Value idx) throws PackagedScriptObjectException(Code)
Get the specified index of this object, if this object is an array. If needed, the array is grown to the appropriate size.
Parameters:
  idx - the index to get a reference to the member
throws:
  PackagedScriptObjectException - (NoSuchMethodException)
See Also:   OArray.length



elementAt
public synchronized Value elementAt(int idx)(Code)



elementsAt
public Value elementsAt(Value idx1, Value idx2) throws PackagedScriptObjectException(Code)
Get the specified range of this object, if this object is an array. This returns a copy of a range of the array.
Parameters:
  idx1 - the index index of the beginning of the range, inclusive
Parameters:
  idx2 - the index of the end of the range, inclusive a copy of the specified range of this array
throws:
  PackagedScriptObjectException - (NoSuchMemberException)
See Also:   OArray.length
See Also:   OArray.elementAt



elementsAt
public Value elementsAt(int idx1, int idx2)(Code)



ensureCapacity
final public void ensureCapacity(int sz)(Code)



every
public Value every(Value fxn)(Code)
Executes the provided function fxn once for each element present in the array until it finds one where callback returns false. If such an element is found, the test aborts and false is returned, otherwise (callback returned true for each of the elements) every will return true. This array is not mutated.
Parameters:
  fxn - invoked with three arguments: the value of the element, the index of the element, and the array object containing theelement; should return true or false true if every element passes the test, otherwisefalse



fillByteArray
public static void fillByteArray(byte[] arr)(Code)



fillCharacterArray
public static void fillCharacterArray(char[] arr)(Code)



fillDoubleArray
public static void fillDoubleArray(double[] arr)(Code)



fillFloatArray
public static void fillFloatArray(float[] arr)(Code)



fillIntegerArray
public static void fillIntegerArray(int[] arr)(Code)



fillLongArray
public static void fillLongArray(long[] arr)(Code)



fillShortArray
public static void fillShortArray(short[] arr)(Code)



filter
public Value filter(Value fxn)(Code)
Create a new array with all elements that pass the test implemented by the provided function. The provided callback is invoked for each element in the array, and a new array is constructed containing (in the same order) the elements for which the callback returned true. Elements for which the callback returns false are skipped. This array is not mutated.
Parameters:
  fxn - invoked with three arguments: the value of the element, the index of the element, and the array object containing theelement; should return true or false the filtered array.



forEach
public void forEach(Value fxn)(Code)
Executes a provided function once per array element. This array is not mutated.
Parameters:
  fxn - invoked with three arguments: the value of the element, the index of the element, and the array object containing theelement



free
public void free()(Code)



getTypeImpl
protected Value getTypeImpl()(Code)
Get the type of this object. The returned type doesn't have to take into account the possibility of a script type extending a built-in type, since that is handled by OArray.getType . the object's type



iterator
public java.util.Iterator iterator()(Code)
Get an iterator of all the elements of this array. This makes arrays useful in the "for( var item : set )" syntx. an iterator of elements of the array



join
public Value join()(Code)
Join all elements in the array into a single string, separated by commas the resulting string



join
public Value join(Value separator)(Code)
Join all elements in the array into a single string, separated by the specified separator.
Parameters:
  separator - the separator string the resulting string



length
public int length() throws PackagedScriptObjectException(Code)
For types that implement elementAt, this returns the number of elements. This is the same as the length property of an object. an integer length
throws:
  PackagedScriptObjectException - (NoSuchMethodException)
See Also:   OArray.elementAt



makeArray
final public static OArray makeArray(Object arrObject)(Code)



map
public Value map(Value fxn)(Code)
Creates a new array with the results of calling a provided function on every element in this array. This array is not mutated.
Parameters:
  fxn - invoked with three arguments: the value of the element, the index of the element, and the array object containing theelement the new array



pop
public synchronized Value pop()(Code)
Remove and return the last element of the array.



push1
public void push1(Value val)(Code)



push2
public void push2(Value val1, Value val2)(Code)



push3
public void push3(Value val1, Value val2, Value val3)(Code)



push4
public void push4(Value val1, Value val2, Value val3, Value val4)(Code)



readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, ClassNotFoundException(Code)
Derived class that implements java.io.Externalizable must call this if it overrides it. It should override it to save/restore it's own state.



referenceAt
final public Reference referenceAt(int idx)(Code)



referenceAt
final public Reference referenceAt(int idx, int attr)(Code)



reset
public void reset()(Code)



reverse
public synchronized Value reverse()(Code)
Reverse the order of elements in this array, returning this array. The array is reversed in order. this array object itself



safeCopy
public MemberTable safeCopy()(Code)



shift
public synchronized Value shift()(Code)
Remove and return the first element of the array.



slice
public Value slice(Value begin)(Code)
Slice out a section of the array. This works like arr[begin.. arr.length()-1]. The index can be negative, in which case it will count from the end of the array.
Parameters:
  begin - the begin index, inclusive the resulting array



slice
public Value slice(Value begin, Value end)(Code)
Slice out a section of the array. This works like arr[begin.. end-1]. Either index can be negative, in which case it will count from the end of the array.
Parameters:
  begin - the begin index, inclusive
Parameters:
  end - the end index, exclusive the resulting array



some
public Value some(Value fxn)(Code)
Tests whether some element in the array passes the test implemented by the provided function. Executes the provided function once for each element present in the array until it finds one where callback returns true. If such an element is found, the test aborts and true is returned, otherwise (callback returned false for each of the elements) return false.
Parameters:
  fxn - invoked with three arguments: the value of the element, the index of the element, and the array object containing theelement; should return true or false true if some element passes the test, otherwisefalse



sort
public Value sort()(Code)
Sort the elements in the array, by converting each element to string, and sorting in ascending order. The array is sorted in place. this array object itself



sort
public synchronized Value sort(Value fxn)(Code)
Sort the elements in the array, by using the specified comparision function. The comparision function(a,b) should return less than zero if a is less than b, zero if they are equal, and greater than zero if a is greater than b. The array is sorted in place.
Parameters:
  fxn - the comparasion function this array object itself



writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException(Code)
Derived class that implements java.io.Externalizable must call this if it overrides it. It should override it to save/restore it's own state.



Fields inherited from oscript.data.OObject
final public static NodeEvaluator EMPTY_EXPR_LIST_EVALUATOR(Code)(Java Doc)
final public static String[] MEMBER_NAMES(Code)(Java Doc)
final public static String PARENT_TYPE_NAME(Code)(Java Doc)
final public static Value TYPE(Code)(Java Doc)
final public static String TYPE_NAME(Code)(Java Doc)

Methods inherited from oscript.data.OObject
public String castToString() throws PackagedScriptObjectException(Code)(Java Doc)
public Value getMember(int id, boolean exception) throws PackagedScriptObjectException(Code)(Java Doc)
protected Value getTypeImpl()(Code)(Java Doc)
protected void populateMemberSet(java.util.Set s, boolean debugger)(Code)(Java Doc)

Fields inherited from oscript.data.Value
final public static boolean DEBUG(Code)(Java Doc)
final public static String[] MEMBER_NAMES(Code)(Java Doc)
final public static Value NULL(Code)(Java Doc)
final public static String PARENT_TYPE_NAME(Code)(Java Doc)
final public static BuiltinType TYPE(Code)(Java Doc)
final public static String TYPE_NAME(Code)(Java Doc)
final public static Value UNDEFINED(Code)(Java Doc)

Methods inherited from oscript.data.Value
public static Value _getTypeMember(Value type, Value obj, int id)(Code)(Java Doc)
public static void _populateTypeMemberSet(Value type, java.util.Set s, boolean d)(Code)(Java Doc)
public Value bopBitwiseAnd(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseAndR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseOr(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseOrR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseXor(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseXorR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopCast(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopCastR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopDivide(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopDivideR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThan(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThanOrEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThanOrEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThanR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopInstanceOf(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopInstanceOfR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLeftShift(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLeftShiftR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThan(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThanOrEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThanOrEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThanR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalAnd(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalAndR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalOr(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalOrR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMinus(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMinusR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMultiply(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMultiplyR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopNotEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopNotEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopPlus(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopPlusR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopRemainder(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopRemainderR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopSignedRightShift(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopSignedRightShiftR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopUnsignedRightShift(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopUnsignedRightShiftR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value callAsConstructor(StackFrame sf, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsConstructor(Value[] args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsConstructor(StackFrame sf, Value[] args)(Code)(Java Doc)
public Value callAsExtends(StackFrame sf, Scope scope, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsExtends(Scope scope, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsExtends(StackFrame sf, Scope scope, Value[] args)(Code)(Java Doc)
public Value callAsFunction(StackFrame sf, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsFunction(Value[] args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsFunction(StackFrame sf, Value[] args)(Code)(Java Doc)
public boolean castToBoolean() throws PackagedScriptObjectException(Code)(Java Doc)
public long castToExactNumber() throws PackagedScriptObjectException(Code)(Java Doc)
public double castToInexactNumber() throws PackagedScriptObjectException(Code)(Java Doc)
public Object castToJavaObject() throws PackagedScriptObjectException(Code)(Java Doc)
public String castToString() throws PackagedScriptObjectException(Code)(Java Doc)
public Value elementAt(Value idx) throws PackagedScriptObjectException(Code)(Java Doc)
public Value elementsAt(Value idx1, Value idx2) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(String name) throws PackagedScriptObjectException(Code)(Java Doc)
public Value getMember(Value name) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(int id) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(String name, boolean exception) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(Value name, boolean exception) throws PackagedScriptObjectException(Code)(Java Doc)
public Value getMember(int id, boolean exception) throws PackagedScriptObjectException(Code)(Java Doc)
public Object getMonitor()(Code)(Java Doc)
public Value getType()(Code)(Java Doc)
abstract protected Value getTypeImpl()(Code)(Java Doc)
protected Value getTypeMember(Value obj, int id)(Code)(Java Doc)
final protected Value getTypeMember(Value obj, Value name)(Code)(Java Doc)
public boolean isA(Value type)(Code)(Java Doc)
public int length() throws PackagedScriptObjectException(Code)(Java Doc)
public java.util.Set memberSet()(Code)(Java Doc)
protected PackagedScriptObjectException noSuchMember(String member)(Code)(Java Doc)
public void opAssign(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
protected void populateMemberSet(java.util.Set s, boolean debugger)(Code)(Java Doc)
protected void populateTypeMemberSet(java.util.Set s, boolean debugger)(Code)(Java Doc)
public void readExternal(java.io.ObjectInput in) throws ClassNotFoundException, java.io.IOException(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public Value unhand()(Code)(Java Doc)
public Value uopBitwiseNot() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopDecrement() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopIncrement() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopLogicalNot() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopMinus() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopPlus() throws PackagedScriptObjectException(Code)(Java Doc)
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.