Java Doc for ModuleEntry.java in  » IDE-Netbeans » api » org » netbeans » modules » apisupport » project » universe » 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 Netbeans » api » org.netbeans.modules.apisupport.project.universe 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.netbeans.modules.apisupport.project.universe.ModuleEntry

All known Subclasses:   org.netbeans.modules.apisupport.project.universe.AbstractEntry,
ModuleEntry
public interface ModuleEntry extends Comparable(Code)
One known module. Falls into four categories:
  1. Modules inside netbeans.org (with source).
  2. Modules with source in an external suite.
  3. Standalone external modules with source.
  4. JARs from a NB binary. May or may not have an associated source dir.




Method Summary
 Set<String>getAllPackageNames()
     Get a set of names of all nonempty packages this module contains.
 StringgetCategory()
     Get category of this module.
 StringgetClassPathExtensions()
     Get any added class path entries, as a path suffix (may be empty).
 FilegetClusterDirectory()
     Get the directory to which the module is built. e.g.
 StringgetCodeNameBase()
     Get a code name base. e.g.
 FilegetDestDir()
     Path which resolves to the root of the NetBeans binary installation used for this module.
 FilegetJarLocation()
     Get the module JAR file. e.g.
 StringgetLocalizedName()
     Get localized name of this module.
 StringgetLongDescription()
     Get long description of this module.
 StringgetNetBeansOrgPath()
     Get a relative source path inside netbeans.org sources. Note that if the entry is from netbeans.org yet was scanned as a side effect of loading an external module that defined netbeans.dest.dir, this will be null - such secondary entries are essentially based on the actual JAR, only adding in a non-null ModuleEntry.getSourceLocation . e.g.
 String[]getProvidedTokens()
     Returns array of provided tokens by the module.
 Set<String>getPublicClassNames()
     Get a set of class names defined in this module's public packages.
 ManifestManager.PackageExport[]getPublicPackages()
     Get array of public packages exported by this module entry. array of public packages.
 StringgetReleaseVersion()
     Returns either the module release version or null if there isn't any.
 String[]getRunDependencies()
     Get a list of code name bases for modules which this module has (runtime) dependencies on.
 StringgetShortDescription()
     Get short description of this module.
 FilegetSourceLocation()
     Get the source location of this module, if there is one.
 StringgetSpecificationVersion()
     Returns either the module specification version or null if there isn't any.
 booleanisDeclaredAsFriend(String cnb)
     Get array of friends of this module.
 booleanisDeprecated()
     Check whether this module is marked as deprecated.



Method Detail
getAllPackageNames
Set<String> getAllPackageNames()(Code)
Get a set of names of all nonempty packages this module contains.



getCategory
String getCategory()(Code)
Get category of this module. Implementations should use lazy-loading from localizing bundle to keep performance up.



getClassPathExtensions
String getClassPathExtensions()(Code)
Get any added class path entries, as a path suffix (may be empty).



getClusterDirectory
File getClusterDirectory()(Code)
Get the directory to which the module is built. e.g. .../nbbuild/netbeans/ide6



getCodeNameBase
String getCodeNameBase()(Code)
Get a code name base. e.g. org.netbeans.modules.java.project



getDestDir
File getDestDir()(Code)
Path which resolves to the root of the NetBeans binary installation used for this module.



getJarLocation
File getJarLocation()(Code)
Get the module JAR file. e.g. .../nbbuild/netbeans/ide6/modules/org-netbeans-modules-java-project.jar



getLocalizedName
String getLocalizedName()(Code)
Get localized name of this module. Implementations should use lazy-loading from localizing bundle to keep performance up. If the localized name is not found getCodeNameBase() is returned.



getLongDescription
String getLongDescription()(Code)
Get long description of this module. Implementations should use lazy-loading from localizing bundle to keep performance up.



getNetBeansOrgPath
String getNetBeansOrgPath()(Code)
Get a relative source path inside netbeans.org sources. Note that if the entry is from netbeans.org yet was scanned as a side effect of loading an external module that defined netbeans.dest.dir, this will be null - such secondary entries are essentially based on the actual JAR, only adding in a non-null ModuleEntry.getSourceLocation . e.g. java/project, or null for external modules



getProvidedTokens
String[] getProvidedTokens()(Code)
Returns array of provided tokens by the module. Can be empty.



getPublicClassNames
Set<String> getPublicClassNames()(Code)
Get a set of class names defined in this module's public packages.



getPublicPackages
ManifestManager.PackageExport[] getPublicPackages()(Code)
Get array of public packages exported by this module entry. array of public packages. May be empty but not null.



getReleaseVersion
String getReleaseVersion()(Code)
Returns either the module release version or null if there isn't any.



getRunDependencies
String[] getRunDependencies()(Code)
Get a list of code name bases for modules which this module has (runtime) dependencies on.



getShortDescription
String getShortDescription()(Code)
Get short description of this module. Implementations should use lazy-loading from localizing bundle to keep performance up.



getSourceLocation
File getSourceLocation()(Code)
Get the source location of this module, if there is one.



getSpecificationVersion
String getSpecificationVersion()(Code)
Returns either the module specification version or null if there isn't any.



isDeclaredAsFriend
boolean isDeclaredAsFriend(String cnb)(Code)
Get array of friends of this module.



isDeprecated
boolean isDeprecated()(Code)
Check whether this module is marked as deprecated.



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