Java Doc for ArrayManager.java in  » Net » Terracotta » com » tc » object » bytecode » hook » impl » 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 » Net » Terracotta » com.tc.object.bytecode.hook.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.tc.object.bytecode.hook.impl.ArrayManager

ArrayManager
public class ArrayManager (Code)
Global array manager. The basic purpose of this class to maintain the relationship to DSO managed arrays to their respective TCObject




Method Summary
public static  voidarraycopy(Object src, int srcPos, Object dest, int destPos, int length)
    
public static  voidbyteOrBooleanArrayChanged(Object array, int index, byte value)
    
public static  voidcharArrayChanged(char[] array, int index, char value)
    
public static  voidcharArrayCopy(char[] src, int srcPos, char[] dest, int destPos, int length, TCObject tcDest)
    
public static  voiddoubleArrayChanged(double[] array, int index, double value)
    
public static  voidfloatArrayChanged(float[] array, int index, float value)
    
public static  Objectget(Object array, int index)
    
public static  TCObjectgetCloneObject(Object array)
    
public static  TCObjectgetObject(Object array)
    
public static  voidintArrayChanged(int[] array, int index, int value)
    
public static  voidlongArrayChanged(long[] array, int index, long value)
    
public static  voidobjectArrayChanged(Object[] array, int index, Object value)
    
public static  voidregister(Object array, TCObject tco)
     Register an array with its TCO.
public static  voidshortArrayChanged(short[] array, int index, short value)
    



Method Detail
arraycopy
public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)(Code)
Handle System.arraycopy() semantics with managed arrays
Parameters:
  src - Source array
Parameters:
  srcPos - Start index in source
Parameters:
  dest - Destination array
Parameters:
  destPos - Destination start index
Parameters:
  length - Number of items to copy
throws:
  NullPointerException - If src or dest is null



byteOrBooleanArrayChanged
public static void byteOrBooleanArrayChanged(Object array, int index, byte value)(Code)
Indicate that byte or boolean in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



charArrayChanged
public static void charArrayChanged(char[] array, int index, char value)(Code)
Indicate that char in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



charArrayCopy
public static void charArrayCopy(char[] src, int srcPos, char[] dest, int destPos, int length, TCObject tcDest)(Code)
Copy char[]
Parameters:
  src - Source array
Parameters:
  srcPos - Start in src
Parameters:
  dest - Destination array
Parameters:
  destPos - Start in dest
Parameters:
  length - Number of items to copy
Parameters:
  tcDest - TCObject for dest array



doubleArrayChanged
public static void doubleArrayChanged(double[] array, int index, double value)(Code)
Indicate that double in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



floatArrayChanged
public static void floatArrayChanged(float[] array, int index, float value)(Code)
Indicate that float in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



get
public static Object get(Object array, int index)(Code)
For java.lang.reflect.Array.get()
Parameters:
  array - The array
Parameters:
  index - Index into the array Item in array at index, boxed to Object if primitive array
throws:
  NullPointerException - If array is null
throws:
  IllegalArgumentException - If array is not an array type



getCloneObject
public static TCObject getCloneObject(Object array)(Code)
Get TCObject for a cloned array
Parameters:
  array - Array TCObject



getObject
public static TCObject getObject(Object array)(Code)
Get the TCO for an array
Parameters:
  array - The array instance The TCObject



intArrayChanged
public static void intArrayChanged(int[] array, int index, int value)(Code)
Indicate that int in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



longArrayChanged
public static void longArrayChanged(long[] array, int index, long value)(Code)
Indicate that long in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



objectArrayChanged
public static void objectArrayChanged(Object[] array, int index, Object value)(Code)
Indicate that object in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



register
public static void register(Object array, TCObject tco)(Code)
Register an array with its TCO. It is an error to register an array that has already been registered.
Parameters:
  array - Array
Parameters:
  tco - TCObject
throws:
  NullPointerException - if array or tco are null



shortArrayChanged
public static void shortArrayChanged(short[] array, int index, short value)(Code)
Indicate that short in array changed
Parameters:
  array - The array
Parameters:
  index - The index into array
Parameters:
  value - The new value



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.