org.jboss.test.aop.annotatedAdviceParams

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 » JBoss » jboss aop » org.jboss.test.aop.annotatedAdviceParams 
org.jboss.test.aop.annotatedAdviceParams
Java Source File NameTypeComment
Arg2TestCase.javaClass Tests the use of @Arg parameters (with around advices only).
ArgAspect.javaClass Aspect used on basic @Arg parameter tests (this class complements org.jboss.test.aop.args.ArgAspect, by containing advices that are allowed only with generated advisors).
ArgAspect2.javaClass Aspect used on @Arg parameter tests.
ArgAspectGenerics.javaClass Aspect used on @Arg parameter tests that involve generic argument types.
ArgAspectInterfaces.javaClass Aspect used on @Arg parameter tests that involve interface hirarchy on joinpoint arguments.
ArgAspectInvertedArgs.javaClass Aspect used on @Arg parameter tests that involve arguments in inverted positions.
ArgInvalidJDK50TestCase.javaClass
ArgInvalidTestCase.javaClass Tests the use of @Arg parameters with invalid advices.
ArgPOJOInterface.javaInterface Interface implemented by ArgsPOJO2 .
ArgsAspect.javaClass Aspect used on @Args parameter tests.
ArgsInvalidPOJO.javaClass Plain old java object used on @Arg and @Args-annotated parameter tests with invalid advices (its joinpoint executions will throw a NoMatchingAdviceException, due to the fact that there is no advice that matches the joinpoint).
This class is a "copy" of ArgsPOJO class.
ArgsInvalidTestCase.javaClass Tests the use of @Args parameters with invalid advices.
ArgsPOJO.javaClass Plain old java object used on @Args parameter tests.
ArgsPOJO2.javaClass Plain old java object used on @Args parameter tests.
ArgsTestCase.javaClass Tests the use of @Args parameters.
ArgTestCase.javaClass Tests the use of @Arg parameters (this class complements org.jboss.test.aop.args.ArgTestCase, by testing advices that are allowed only with generated advisors).
CallerAspect.javaClass Aspect used on @Caller parameter tests.
CallerInvalidTestCase.javaClass Tests the use of @Caller parameters with invalid advices.
CallerTestCase.javaClass Tests the use of @Caller parameters.
Implementor.javaClass Class used on before/after/throwing annotated parameter tests.
Interface.javaInterface
JoinPointAspect.javaClass Aspect used on @JoinPoint parameter tests.
JoinPointInvalidPOJO.javaClass Plain old java object used on @JoinPoint parameter tests with invalid advices(its joinpoint executions will throw a NoMatchingAdviceException, due to the fact that there is no advice that matches the joinpoint).
This class is a "copy" of ArgsPOJO class.
JoinPointInvalidTestCase.javaClass Tests the use of @JoinPoint parameters with invalid advices.
JoinPointPOJO.javaClass Plain old java object used on @JoinPoint parameter tests.
JoinPointTestCase.javaClass Tests the use of @JoinPoint parameters.
OverloadedAdvicePOJO.javaClass Plain old java object used on overloaded advice tests.
OverloadedAdvicePOJOCaller.javaClass Plain old java object used on overloaded advice tests )for Call and Target parameters).
OverloadedAdviceTestCase.javaClass Tests the selection of advice methods when these are overloaded.
OverloadedAfterAspect.javaClass Aspect used on overloaded around advice tests (for JoinPoint, Return, Arg and Args tests).
OverloadedAfterCallAspect.javaClass Aspect used on overloaded after advice tests (for Call and Target tests only).
OverloadedAroundAspect.javaClass Aspect used on overloaded around advice tests (for JoinPoint, Arg and Args tests).
OverloadedAroundCallAspect.javaClass Aspect used on overloaded around advice tests (for Call and Target tests only).
OverloadedBeforeAspect.javaClass Aspect used on overloaded around advice tests (for JoinPoint, Arg and Args tests).
OverloadedBeforeCallAspect.javaClass Aspect used on overloaded before advice tests (for Call and Target tests only).
OverloadedFinallyAspect.javaClass Aspect used on overloaded finally advice tests (for JoinPoint, Return, Thrown, Arg and Args tests).
OverloadedFinallyCallAspect.javaClass Aspect used on overloaded finally advice tests (for Caller and Target tests only). Notice that this test has to include other annotations to verify the interaction of Target and Caller with all other annotations used in finally.
OverloadedThrowingAspect.javaClass Aspect used on overloaded throwing advice tests (for JoinPoint, Thrown, Arg and Args tests).
OverloadedThrowingCallAspect.javaClass Aspect used on overloaded throwing advice tests (for Call and Target tests only).
POJOException.javaClass Class used on before/after/throwing annotated parameter tests.
ReturnAspect.javaClass Aspect used both on @Return parameter tests, and on advice return type tests.
ReturnAspectGenerics.javaClass Aspect used on @Return parameter tests that involve generic return types.
ReturnInvalidJDK50TestCase.javaClass
ReturnInvalidPOJO.javaClass Plain old java object used both on @Return parameter tests with invalid advices( its joinpoint executions will throw a NoMatchingAdviceException, due to the fact that there is no advice that matches the joinpoint).
This class is a "copy" of ArgsPOJO class.
ReturnInvalidTestCase.javaClass Tests both the use of @Return parameter with invalid advices, and the use of return values in invalid advices.
ReturnJDK50TestCase.javaClass
ReturnPOJO.javaClass Plain old java object used both on @Return parameter tests, and on advice return type tests.
ReturnTestCase.javaClass Tests both the use of @Return parameters, and the use of return values in advices.
SubClass.javaClass Class used on before/after/throwing annotated parameter tests.
SubInterface.javaInterface Class used on before/after/throwing annotated parameter tests.
SubValue.javaClass
SuperClass.javaClass Class used on before/after/throwing annotated parameter tests.
SuperInterface.javaInterface Class used on before/after/throwing annotated parameter tests.
SuperValue.javaClass
TargetAspect.javaClass Aspect used on @Args parameter tests.
TargetCallerInvalidPOJO.javaenum
TargetCallerPOJO.javaenum
TargetInvalidTestCase.javaClass Tests the use of @Target parameters with invalid advices.
TargetTestCase.javaClass Tests the use of @Target parameters.
ThrownAspect.javaClass Aspect used on @Thrown parameter tests.
ThrownInvalidPOJO.javaClass Plain old java object used on @Thrown parameter tests with invalid advices (its joinpoint executions will throw a NoMatchingAdviceException, due to the fact that there is no advice that matches the joinpoint).
This class is a "copy" of ThrownPOJO class.
ThrownInvalidTestCase.javaClass Tests parameter annotation @Thrown with invalid advices.
ThrownPOJO.javaClass Plain old java object used on @Thrown parameter tests.
ThrownTestCase.javaClass Tests parameter annotation @Thrown.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.