Source Code Cross Referenced for MethodMatcher.java in  » J2EE » spring-framework-2.5 » org » springframework » aop » 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 » J2EE » spring framework 2.5 » org.springframework.aop 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Copyright 2002-2007 the original author or authors.
03:         *
04:         * Licensed under the Apache License, Version 2.0 (the "License");
05:         * you may not use this file except in compliance with the License.
06:         * You may obtain a copy of the License at
07:         *
08:         *      http://www.apache.org/licenses/LICENSE-2.0
09:         *
10:         * Unless required by applicable law or agreed to in writing, software
11:         * distributed under the License is distributed on an "AS IS" BASIS,
12:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13:         * See the License for the specific language governing permissions and
14:         * limitations under the License.
15:         */
16:
17:        package org.springframework.aop;
18:
19:        import java.lang.reflect.Method;
20:
21:        /**
22:         * Part of a {@link Pointcut}: Checks whether the target method is eligible for advice.
23:         *
24:         * <p>A MethodMatcher may be evaluated <b>statically</b> or at <b>runtime</b> (dynamically).
25:         * Static matching involves method and (possibly) method attributes. Dynamic matching
26:         * also makes arguments for a particular call available, and any effects of running
27:         * previous advice applying to the joinpoint.
28:         *
29:         * <p>If an implementation returns <code>false</code> from its {@link #isRuntime()}
30:         * method, evaluation can be performed statically, and the result will be the same
31:         * for all invocations of this method, whatever their arguments. This means that
32:         * if the {@link #isRuntime()} method returns <code>false</code>, the 3-arg
33:         * {@link #matches(java.lang.reflect.Method, Class, Object[])} method will never be invoked.
34:         *
35:         * <p>If an implementation returns <code>true</code> from its 2-arg
36:         * {@link #matches(java.lang.reflect.Method, Class)} method and its {@link #isRuntime()} method
37:         * returns <code>true</code>, the 3-arg {@link #matches(java.lang.reflect.Method, Class, Object[])}
38:         * method will be invoked <i>immediately before each potential execution of the related advice</i>,
39:         * to decide whether the advice should run. All previous advice, such as earlier interceptors
40:         * in an interceptor chain, will have run, so any state changes they have produced in
41:         * parameters or ThreadLocal state will be available at the time of evaluation.
42:         *
43:         * @author Rod Johnson
44:         * @since 11.11.2003
45:         * @see Pointcut
46:         * @see ClassFilter
47:         */
48:        public interface MethodMatcher {
49:
50:            /**
51:             * Perform static checking whether the given method matches. If this
52:             * returns <code>false</code> or if the {@link #isRuntime()} method
53:             * returns <code>false</code>, no runtime check (i.e. no.
54:             * {@link #matches(java.lang.reflect.Method, Class, Object[])} call) will be made.
55:             * @param method the candidate method
56:             * @param targetClass the target class (may be <code>null</code>, in which case
57:             * the candidate class must be taken to be the method's declaring class)
58:             * @return whether or not this method matches statically
59:             */
60:            boolean matches(Method method, Class targetClass);
61:
62:            /**
63:             * Is this MethodMatcher dynamic, that is, must a final call be made on the
64:             * {@link #matches(java.lang.reflect.Method, Class, Object[])} method at
65:             * runtime even if the 2-arg matches method returns <code>true</code>?
66:             * <p>Can be invoked when an AOP proxy is created, and need not be invoked
67:             * again before each method invocation,
68:             * @return whether or not a runtime match via the 3-arg
69:             * {@link #matches(java.lang.reflect.Method, Class, Object[])} method
70:             * is required if static matching passed
71:             */
72:            boolean isRuntime();
73:
74:            /**
75:             * Check whether there a runtime (dynamic) match for this method,
76:             * which must have matched statically.
77:             * <p>This method is invoked only if the 2-arg matches method returns
78:             * <code>true</code> for the given method and target class, and if the
79:             * {@link #isRuntime()} method returns <code>true</code>. Invoked
80:             * immediately before potential running of the advice, after any
81:             * advice earlier in the advice chain has run.
82:             * @param method the candidate method
83:             * @param targetClass the target class (may be <code>null</code>, in which case
84:             * the candidate class must be taken to be the method's declaring class)
85:             * @param args arguments to the method
86:             * @return whether there's a runtime match
87:             * @see MethodMatcher#matches(Method, Class)
88:             */
89:            boolean matches(Method method, Class targetClass, Object[] args);
90:
91:            /**
92:             * Canonical instance that matches all methods.
93:             */
94:            MethodMatcher TRUE = TrueMethodMatcher.INSTANCE;
95:
96:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.