Source Code Cross Referenced for NameMatchesComponentPointcut.java in  » Inversion-of-Control » nanocontainer » org » nanocontainer » aop » defaults » 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 » Inversion of Control » nanocontainer » org.nanocontainer.aop.defaults 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*****************************************************************************
02:         * Copyright (c) PicoContainer Organization. All rights reserved.            *
03:         * ------------------------------------------------------------------------- *
04:         * The software in this package is published under the terms of the BSD      *
05:         * style license a copy of which has been included with this distribution in *
06:         * the LICENSE.txt file.                                                     *
07:         *                                                                           *
08:         * Idea by Rachel Davies, Original code by various                           *
09:         *****************************************************************************/package org.nanocontainer.aop.defaults;
10:
11:        import org.apache.oro.text.regex.MalformedPatternException;
12:        import org.apache.oro.text.regex.Pattern;
13:        import org.apache.oro.text.regex.Perl5Compiler;
14:        import org.apache.oro.text.regex.Perl5Matcher;
15:        import org.nanocontainer.aop.ComponentPointcut;
16:        import org.nanocontainer.aop.MalformedRegularExpressionException;
17:
18:        /**
19:         * Component pointcut that matches the component name against a regular
20:         * expression.
21:         *
22:         * @author Stephen Molitor
23:         * @version $Revision: 3144 $
24:         */
25:        public class NameMatchesComponentPointcut implements  ComponentPointcut {
26:
27:            private final Pattern pattern;
28:            private final Perl5Matcher matcher = new Perl5Matcher();
29:
30:            /**
31:             * Creates a new <code>NameMatchesComponentPointcut</code> that will match
32:             * the component key against the given regular expression. The regular
33:             * expression must be an <a
34:             * href="http://jakarta.apache.org/oro/index.html">ORO </a> Perl5 regular
35:             * expression.
36:             *
37:             * @param regex the regular expression to match against the component name.
38:             * @throws org.nanocontainer.aop.MalformedRegularExpressionException
39:             *          if the regular expression is
40:             *          invalid.
41:             */
42:            public NameMatchesComponentPointcut(String regex)
43:                    throws MalformedRegularExpressionException {
44:                Perl5Compiler compiler = new Perl5Compiler();
45:                try {
46:                    pattern = compiler.compile(regex);
47:                } catch (MalformedPatternException e) {
48:                    throw new MalformedRegularExpressionException(
49:                            "malformed component name regular expression", e);
50:                }
51:            }
52:
53:            /**
54:             * Tests to see if the component key's toString() value matches the regular expression passed
55:             * to the constructor.
56:             *
57:             * @param componentKey the component key to match against.
58:             * @return true if the regular expression passed to the constructor matches
59:             *         against <code>componentKey</code>, else false.
60:             */
61:            public boolean picks(Object componentKey) {
62:                String componentName = (String) componentKey.toString();
63:                return matcher.contains(componentName, pattern);
64:            }
65:
66:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.