Source Code Cross Referenced for AnnotationProcessor.java in  » Code-Analyzer » Spoon » spoon » processing » 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 » Code Analyzer » Spoon » spoon.processing 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /* 
02:         * Spoon - http://spoon.gforge.inria.fr/
03:         * Copyright (C) 2006 INRIA Futurs <renaud.pawlak@inria.fr>
04:         * 
05:         * This software is governed by the CeCILL-C License under French law and
06:         * abiding by the rules of distribution of free software. You can use, modify 
07:         * and/or redistribute the software under the terms of the CeCILL-C license as 
08:         * circulated by CEA, CNRS and INRIA at http://www.cecill.info. 
09:         * 
10:         * This program is distributed in the hope that it will be useful, but WITHOUT 
11:         * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
12:         * FITNESS FOR A PARTICULAR PURPOSE. See the CeCILL-C License for more details.
13:         *  
14:         * The fact that you are presently reading this means that you have had
15:         * knowledge of the CeCILL-C license and that you accept its terms.
16:         */
17:
18:        package spoon.processing;
19:
20:        import java.lang.annotation.Annotation;
21:        import java.util.Set;
22:
23:        import spoon.reflect.declaration.CtElement;
24:
25:        /**
26:         * This interface defines an annotation processor. An annotation processor is
27:         * triggered by Spoon when a visited element is annotated with one of the
28:         * processed or consumed annotations. To define a new annotation processor, the
29:         * user should subclass {@link spoon.processing.AbstractAnnotationProcessor},
30:         * the abstract default implementation of this interface.
31:         */
32:        public interface AnnotationProcessor<A extends Annotation, E extends CtElement>
33:                extends Processor<E> {
34:
35:            /**
36:             * Do the annotation processing job for a given annotation.
37:             * 
38:             * @param annotation
39:             *            the annotation to process
40:             * @param element
41:             *            the element that holds the processed annotations
42:             */
43:            void process(A annotation, E element);
44:
45:            /**
46:             * Gets the annotations processed by this annotation processor, that is to
47:             * say the annotation types that trigger the
48:             * {@link #process(Annotation, CtElement)} method when visiting a program
49:             * element. The processed annotation types includes all the consumed
50:             * annotation types.
51:             * 
52:             * @return the annotation classes
53:             */
54:            Set<Class<? extends A>> getProcessedAnnotationTypes();
55:
56:            /**
57:             * Gets the annotations types consumed by this processor. A consumed
58:             * annotation is a special kind of processed annotation (see
59:             * {@link #getProcessedAnnotationTypes()} that is automatically removed from
60:             * the program once the associated processor has finished its job.
61:             * 
62:             * @return the annotation classes
63:             */
64:            Set<Class<? extends A>> getConsumedAnnotationTypes();
65:
66:            /**
67:             * Returns true (default) if the processor automatically infers the consumed
68:             * annotation type to the <code>A</code> actual type.
69:             */
70:            boolean inferConsumedAnnotationType();
71:
72:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.