groovy.lang

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 » groovy.lang 
groovy.lang
package groovy.lang.*

Core Groovy language classes for implementing data structures, closures, metadata and so forth.

Java Source File NameTypeComment
BenchmarkInterceptor.javaClass Interceptor that registers the timestamp of each method call before and after invocation.
Binding.javaClass Represents the variable bindings of a script which can be altered from outside the script object or created outside of a script and passed into it.
BitwiseNegateEvaluatingException.javaClass
Buildable.javaInterface
Closure.javaClass Represents any closure object in Groovy.
ClosureException.javaClass
DelegatingMetaClass.javaClass
DeprecationException.javaClass Use this exception to mark a method implementation as being deprecated. Use the message to indicate the recommended way of calling the desired functionality. Make throwing this exception the only line in the method implementation, i.e.
EmptyRange.javaClass
GroovyClassLoader.javaClass A ClassLoader which can load Groovy classes.
GroovyCodeSource.javaClass CodeSource wrapper class that allows specific security policies to be associated with a class compiled from groovy source.
GroovyInterceptable.javaInterface Marker interface used to notify that all methods should be intercepted through the invokeMethod mechanism of GroovyObject.
GroovyObject.javaInterface
GroovyObjectSupport.javaClass
GroovyResourceLoader.javaInterface Allows frameworks that integrate with Groovy to determine how Groovy files are resolved.
GroovyRuntimeException.javaClass
GroovyShell.javaClass
GString.javaClass Represents a String which contains embedded values such as "hello there ${user} how are you?" which can be evaluated lazily.
IllegalPropertyAccessException.javaClass An exception occurred if a dynamic property dispatch fails with a field not accessible.
IncorrectClosureArgumentsException.javaClass
Interceptor.javaInterface Implementers of this interface can be registered in the ProxyMetaClass for notifications about method calls for objects managed by the ProxyMetaClass.
IntRange.javaClass Represents a list of Integer objects from a specified int up to and including a given and to.
MetaArrayLengthProperty.javaClass
MetaBeanProperty.javaClass
MetaClass.javaClass Base class for meta class implementations.
MetaClassImpl.javaClass
MetaClassRegistry.javaClass
MetaExpandoProperty.javaClass
MetaFieldProperty.javaClass
MetaMethod.javaClass
MetaProperty.javaClass
MissingClassException.javaClass An exception occurred if a dynamic method dispatch fails with an unknown class.
MissingFieldException.javaClass An exception occurred if a dynamic field dispatch fails with an unknown field.
MissingMethodException.javaClass An exception occurred if a dynamic method dispatch fails with an unknown method.
MissingPropertyException.javaClass An exception occurred if a dynamic property dispatch fails with an unknown property.
NonEmptySequence.javaClass Represents a sequence of objects which represents one or many instances of of objects of a given type.
ObjectRange.javaClass
ParameterArray.javaClass Distinguish a parameter array from Object[].
PropertyValue.javaClass
ProxyMetaClass.javaClass As subclass of MetaClass, ProxyMetaClass manages calls from Groovy Objects to POJOs. It enriches MetaClass with the feature of making method invokations interceptable by an Interceptor.
Range.javaInterface
ReadOnlyPropertyException.javaClass
Reference.javaClass
Script.javaClass
Sequence.javaClass Represents a sequence of objects which represents zero or many instances of of objects of a given type.
SpreadListEvaluatingException.javaClass
SpreadMap.javaClass Represents a spreadable map which extends java.util.HashMap.
SpreadMapEvaluatingException.javaClass
StringWriterIOException.javaClass An IO exception occurred trying to append to a StringWriter which should never happen.
TracingInterceptor.javaClass
Tuple.javaClass Represents a list of Integer objects from a specified int up to but not including a given and to.
Writable.javaInterface Represents an object which is capable of writing itself to a text stream in a more efficient format than just creating a toString() representation of itself.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.