Source Code Cross Referenced for package-info.java in  » 6.0-JDK-Modules-sun » javac-compiler » javax » lang » model » element » 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 » 6.0 JDK Modules sun » javac compiler » javax.lang.model.element 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


        /*
         * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
         *
         * This code is free software; you can redistribute it and/or modify it
         * under the terms of the GNU General Public License version 2 only, as
         * published by the Free Software Foundation.  Sun designates this
         * particular file as subject to the "Classpath" exception as provided
         * by Sun in the LICENSE file that accompanied this code.
         *
         * This code is distributed in the hope that it will be useful, but WITHOUT
         * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
         * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
         * version 2 for more details (a copy is included in the LICENSE file that
         * accompanied this code).
         *
         * You should have received a copy of the GNU General Public License version
         * 2 along with this work; if not, write to the Free Software Foundation,
         * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
         *
         * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
         * CA 95054 USA or visit www.sun.com if you need additional information or
         * have any questions.
         */

        /**
         * Interfaces used to model elements of the Java programming language.
         *
         * <p>When used in the context of annotation processing, an accurate
         * model of the element being represented must be returned.  As this
         * is a language model, the source code provides the fiducial
         * (reference) representation of the construct in question rather than
         * a representation in an executable output like a class file.
         * Executable output may serve as the basis for creating a modeling
         * element.  However, the process of translating source code to
         * executable output may not permit recovering some aspects of the
         * source code representation.  For example, annotations with
         * {@linkplain java.lang.annotation.RetentionPolicy#SOURCE source}
         * {@linkplain java.lang.annotation.Retention retention} cannot be
         * recovered from class files and class files might not be able to
         * provide source position information.  The {@linkplain
         * javax.lang.model.element.Modifier modifiers} on an element may
         * differ in some cases including
         *
         * <ul>
         * <li> {@code strictfp} on a class or interface
         * <li> {@code final} on a parameter
         * <li> {@code protected}, {@code private}, and {@code static} on classes and interfaces
         * </ul>
         *
         * Additionally, synthetic constructs in a class file, such as
         * accessor methods used in implementing nested classes and bridge
         * methods used in implementing covariant returns, are translation
         * artifacts outside of this model.
         *
         * <p>During annotation processing, operating on incomplete or
         * erroneous programs is necessary; however, there are fewer
         * guarantees about the nature of the resulting model.  If the source
         * code is not syntactically well-formed, a model may or may not be
         * provided as a quality of implementation issue.  If a program is
         * syntactically valid but erroneous in some other fashion, the
         * returned model must have no less information than if all the method
         * bodies in the program were replaced by {@code "throw new
         * RuntimeException();"}.  If a program refers to a missing type XYZ,
         * the returned model must contain no less information than if the
         * declaration of type XYZ were assumed to be {@code "class XYZ {}"},
         * {@code "interface XYZ {}"}, {@code "enum XYZ {}"}, or {@code
         * "@interface XYZ {}"}. If a program refers to a missing type {@code
         * XYZ<K1, ... ,Kn>}, the returned model must contain no less
         * information than if the declaration of XYZ were assumed to be
         * {@code "class XYZ<T1, ... ,Tn> {}"} or {@code "interface XYZ<T1,
         * ... ,Tn> {}"}
         *
         * <p> Unless otherwise specified in a particular implementation, the
         * collections returned by methods in this package should be expected
         * to be unmodifiable by the caller and unsafe for concurrent access.
         *
         * <p> Unless otherwise specified, methods in this package will throw
         * a {@code NullPointerException} if given a {@code null} argument.
         *
         * @author Joseph D. Darcy
         * @author Scott Seligman
         * @author Peter von der Ah&eacute;
         * @version 1.12 07/05/05
         * @since 1.6
         */package javax.lang.model.element;

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.