Source Code Cross Referenced for IDOMCompilationUnit.java in  » IDE-Eclipse » jdt » org » eclipse » jdt » core » jdom » 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 » IDE Eclipse » jdt » org.eclipse.jdt.core.jdom 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*******************************************************************************
02:         * Copyright (c) 2000, 2006 IBM Corporation and others.
03:         * All rights reserved. This program and the accompanying materials
04:         * are made available under the terms of the Eclipse Public License v1.0
05:         * which accompanies this distribution, and is available at
06:         * http://www.eclipse.org/legal/epl-v10.html
07:         *
08:         * Contributors:
09:         *     IBM Corporation - initial API and implementation
10:         *******************************************************************************/package org.eclipse.jdt.core.jdom;
11:
12:        /**
13:         * Represents a Java compilation unit (source file with one of the 
14:         * {@link org.eclipse.jdt.core.JavaCore#getJavaLikeExtensions() 
15:         * Java-like extensions}). 
16:         * The corresponding syntactic unit is CompilationUnit (JLS2 7.3).  
17:         * Allowable child types for a compilation unit are <code>IDOMPackage</code>, <code>IDOMImport</code>,
18:         * and <code>IDOMType</code>.
19:         * <p>
20:         * This interface is not intended to be implemented by clients.
21:         * </p>
22:         * @deprecated The JDOM was made obsolete by the addition in 2.0 of the more
23:         * powerful, fine-grained DOM/AST API found in the 
24:         * org.eclipse.jdt.core.dom package.
25:         */
26:        public interface IDOMCompilationUnit extends IDOMNode {
27:            /**
28:             * Returns the header comment for this compilation unit. The header comment
29:             * appears before the first declaration in a compilation unit.
30:             * The syntax for a comment corresponds to Comments (JLS2 3.7), <b>including</b>
31:             * comment delimiters.
32:             *
33:             * @return the header comment for this compilation unit, or <code>null</code> if
34:             *   no header comment is present
35:             */
36:            public String getHeader();
37:
38:            /**
39:             * The <code>IDOMCompilationNode</code> refinement of this <code>IDOMNode</code>
40:             * method returns the name of this compilation unit.
41:             *
42:             * <p>The name of a compilation unit is the name of the first top-level public type
43:             * defined in the compilation unit, suffixed with one of the 
44:             * {@link org.eclipse.jdt.core.JavaCore#getJavaLikeExtensions() 
45:             * Java-like extensions}. For example, if the first
46:             * top-level public type defined in this compilation unit has the name "Hanoi",
47:             * then name of this compilation unit is "Hanoi.java".</p>
48:             *
49:             * <p>In the absence of a public top-level type, the name of the first top-level
50:             * type is used. In the absence of any type, the name of the compilation unit
51:             * is <code>null</code>.</p>
52:             *
53:             * @return the name of this compilation unit, or <code>null</code> if none
54:             */
55:            public String getName();
56:
57:            /**
58:             * Sets the header comment for this compilation unit. The header comment
59:             * appears before the first declaration in a compilation unit.
60:             * The syntax for a comment corresponds to Comments (JLS2 3.7), <b>including</b>
61:             * comment delimiters.
62:             *
63:             * @param comment the header comment for this compilation unit, or <code>null</code> if
64:             *   indicating no header comment
65:             */
66:            public void setHeader(String comment);
67:
68:            /**
69:             * The <code>IDOMCompilationNode</code> refinement of this <code>IDOMNode</code>
70:             * method has no effect (the name is computed from the types declared within it).
71:             * 
72:             * @param name the given name
73:             */
74:            public void setName(String name);
75:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.