Java Doc for ClassHelper.java in  » Scripting » groovy-1.0 » org » codehaus » groovy » ast » 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 » groovy 1.0 » org.codehaus.groovy.ast 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.codehaus.groovy.ast.ClassHelper

ClassHelper
public class ClassHelper (Code)
This class is a Helper for ClassNode and classes handling ClassNodes. It does contain a set of predefined ClassNodes for the most used types and some code for cached ClassNode creation and basic ClassNode handling
author:
   Jochen Theodorou


Field Summary
final public static  ClassNodeDYNAMIC_TYPEOBJECT_TYPEVOID_TYPECLOSURE_TYPEGSTRING_TYPELIST_TYPEMAP_TYPERANGE_TYPEPATTERN_TYPESTRING_TYPESCRIPT_TYPEREFERENCE_TYPEboolean_TYPEchar_TYPEbyte_TYPEint_TYPElong_TYPEshort_TYPEdouble_TYPEfloat_TYPEByte_TYPEShort_TYPEInteger_TYPELong_TYPECharacter_TYPEFloat_TYPEDouble_TYPEBoolean_TYPEBigInteger_TYPEBigDecimal_TYPEvoid_WRAPPER_TYPECLASS_TypeMETACLASS_TYPE
    
final protected static  ClassNode[]EMPTY_TYPE_ARRAY
    
final public static  StringOBJECT
    


Method Summary
public static  ClassNodegetWrapper(ClassNode cn)
     Creates a ClassNode containing the wrapper of a ClassNode of primitive type.
public static  booleanisPrimitiveType(ClassNode cn)
     Test to determine if a ClasNode is a primitve type.
public static  ClassNode[]make(Class[] classes)
     Creates an array of ClassNodes using an array of classes.
public static  ClassNodemake(Class c)
     Creates a ClassNode using a given class.
public static  ClassNodemake(String name)
     Creates a ClassNode using a given class. If the name is one of the predefined ClassNodes then the corresponding ClassNode instance will be returned.
public static  ClassNodemakeReference()
    
public static  ClassNodemakeWithoutCaching(String name)
     Creates a ClassNode using a given class. Unlike make(String) this method will not use the cache to create the ClassNode.

Field Detail
DYNAMIC_TYPEOBJECT_TYPEVOID_TYPECLOSURE_TYPEGSTRING_TYPELIST_TYPEMAP_TYPERANGE_TYPEPATTERN_TYPESTRING_TYPESCRIPT_TYPEREFERENCE_TYPEboolean_TYPEchar_TYPEbyte_TYPEint_TYPElong_TYPEshort_TYPEdouble_TYPEfloat_TYPEByte_TYPEShort_TYPEInteger_TYPELong_TYPECharacter_TYPEFloat_TYPEDouble_TYPEBoolean_TYPEBigInteger_TYPEBigDecimal_TYPEvoid_WRAPPER_TYPECLASS_TypeMETACLASS_TYPE
final public static ClassNode DYNAMIC_TYPEOBJECT_TYPEVOID_TYPECLOSURE_TYPEGSTRING_TYPELIST_TYPEMAP_TYPERANGE_TYPEPATTERN_TYPESTRING_TYPESCRIPT_TYPEREFERENCE_TYPEboolean_TYPEchar_TYPEbyte_TYPEint_TYPElong_TYPEshort_TYPEdouble_TYPEfloat_TYPEByte_TYPEShort_TYPEInteger_TYPELong_TYPECharacter_TYPEFloat_TYPEDouble_TYPEBoolean_TYPEBigInteger_TYPEBigDecimal_TYPEvoid_WRAPPER_TYPECLASS_TypeMETACLASS_TYPE(Code)



EMPTY_TYPE_ARRAY
final protected static ClassNode[] EMPTY_TYPE_ARRAY(Code)



OBJECT
final public static String OBJECT(Code)





Method Detail
getWrapper
public static ClassNode getWrapper(ClassNode cn)(Code)
Creates a ClassNode containing the wrapper of a ClassNode of primitive type. Any ClassNode representing a primitive type should be created using the predefined types used in class. The method will check the parameter for known references of ClassNode representing a primitive type. If Reference is found, then a ClassNode will be contained that represents the wrapper class. For exmaple for boolean, the wrapper class is java.lang.Boolean. If the parameter is no primitve type, the redirected ClassNode will be returned
See Also:   ClassHelper.make(Class)
See Also:   ClassHelper.make(String)
Parameters:
  cn - the ClassNode containing a possible primitive type



isPrimitiveType
public static boolean isPrimitiveType(ClassNode cn)(Code)
Test to determine if a ClasNode is a primitve type. Note: this only works for ClassNodes created using a predefined ClassNode
See Also:   ClassHelper.make(Class)
See Also:   ClassHelper.make(String)
Parameters:
  cn - the ClassNode containing a possible primitive type true if the ClassNode is a primitve type



make
public static ClassNode[] make(Class[] classes)(Code)
Creates an array of ClassNodes using an array of classes. For each of the given classes a new ClassNode will be created
See Also:   ClassHelper.make(Class)
Parameters:
  classes - an array of classes used to create the ClassNodes an array of ClassNodes



make
public static ClassNode make(Class c)(Code)
Creates a ClassNode using a given class. A new ClassNode object is only created if the class is not one of the predefined ones
Parameters:
  c - class used to created the ClassNode ClassNode instance created from the given class



make
public static ClassNode make(String name)(Code)
Creates a ClassNode using a given class. If the name is one of the predefined ClassNodes then the corresponding ClassNode instance will be returned. If the is null of of length 0 the dynamic type is returned
Parameters:
  name - of the class the ClassNode is representing



makeReference
public static ClassNode makeReference()(Code)



makeWithoutCaching
public static ClassNode makeWithoutCaching(String name)(Code)
Creates a ClassNode using a given class. Unlike make(String) this method will not use the cache to create the ClassNode. This means the ClassNode created from this method using the same name will have a different references
See Also:   ClassHelper.make(String)
Parameters:
  name - of the class the ClassNode is representing



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.