Java Doc for UpdateItem.java in  » IDE-Netbeans » autoupdate » org » netbeans » spi » autoupdate » 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 » autoupdate » org.netbeans.spi.autoupdate 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.spi.autoupdate.UpdateItem

UpdateItem
final public class UpdateItem (Code)
Represents a item of content provider by UpdateProvider. These items are exposed to Autoupdate infrastructure what works on them.
author:
   Jiri Rechtacek


Field Summary
 UpdateItemImplimpl
    
 UpdateItemoriginal
    

Constructor Summary
 UpdateItem(UpdateItemImpl item)
    

Method Summary
final public static  UpdateItemcreateFeature(String codeName, String specificationVersion, Set<String> dependencies, String displayName, String description, String category)
     Creates UpdateItem which represents Feature, it's means group of NetBeans Modules.
final public static  UpdateItemcreateInstalledNativeComponent(String codeName, String specificationVersion, Set<String> dependencies, String displayName, String description, CustomUninstaller uninstaller)
     Creates UpdateItem which represents Native Component with own installer.
final public static  UpdateItemcreateLocalization(String codeName, String specificationVersion, String moduleSpecificationVersion, Locale locale, String branding, String localizedName, String localizedDescription, String category, URL distribution, Boolean needsRestart, Boolean isGlobal, String targetCluster, UpdateLicense license)
     Creates UpdateItem which can localized NetBeans Module in given Locale.
final public static  UpdateItemcreateModule(String codeName, String specificationVersion, URL distribution, String author, String downloadSize, String homepage, String publishDate, String category, Manifest manifest, Boolean isEager, Boolean isAutoload, Boolean needsRestart, Boolean isGlobal, String targetCluster, UpdateLicense license)
     Creates UpdateItem/code> which represents NetBeans Module in Autoupdate infrastructure.
final public static  UpdateItemcreateNativeComponent(String codeName, String specificationVersion, String downloadSize, Set<String> dependencies, String displayName, String description, Boolean needsRestart, Boolean isGlobal, String targetCluster, CustomInstaller installer, UpdateLicense license)
     Creates UpdateItem which represents Native Component with own installer.

Field Detail
impl
UpdateItemImpl impl(Code)



original
UpdateItem original(Code)




Constructor Detail
UpdateItem
UpdateItem(UpdateItemImpl item)(Code)
Creates a new instance of UpdateItem




Method Detail
createFeature
final public static UpdateItem createFeature(String codeName, String specificationVersion, Set<String> dependencies, String displayName, String description, String category)(Code)
Creates UpdateItem which represents Feature, it's means group of NetBeans Modules. This Feature is handled in UI as atomic item. UpdateItem is identify by codeName and specificationVersion.
Parameters:
  codeName - code name of feature
Parameters:
  specificationVersion - specification version of feature
Parameters:
  dependencies - dependencies to NetBeans modules on which is the feature based
Parameters:
  displayName - display name
Parameters:
  description - description
Parameters:
  category - name of category UpdateItem



createInstalledNativeComponent
final public static UpdateItem createInstalledNativeComponent(String codeName, String specificationVersion, Set<String> dependencies, String displayName, String description, CustomUninstaller uninstaller)(Code)
Creates UpdateItem which represents Native Component with own installer. This component can be visualized in UI as common item, when an user wants to install this component then own CustomInstaller is call back.
Parameters:
  codeName - code name of the native component
Parameters:
  specificationVersion - specification version of component
Parameters:
  dependencies - dependencies to other UpdateItem
Parameters:
  displayName - display name
Parameters:
  description - description
Parameters:
  uninstaller - CustomUninstaller call-back interface UpdateItem



createLocalization
final public static UpdateItem createLocalization(String codeName, String specificationVersion, String moduleSpecificationVersion, Locale locale, String branding, String localizedName, String localizedDescription, String category, URL distribution, Boolean needsRestart, Boolean isGlobal, String targetCluster, UpdateLicense license)(Code)
Creates UpdateItem which can localized NetBeans Module in given Locale.
Parameters:
  codeName - code name of the module for localization
Parameters:
  specificationVersion - specification version of localization
Parameters:
  moduleSpecificationVersion - specification version of the module for localization
Parameters:
  locale - locale
Parameters:
  branding - branding
Parameters:
  localizedName - localized name of module
Parameters:
  localizedDescription - localized descripton of module
Parameters:
  category - name of category
Parameters:
  distribution - URL to NBM file
Parameters:
  needsRestart - if true then IDE must be restarted after module installation
Parameters:
  isGlobal - control if the module will be installed into the installation directory or into user's dir
Parameters:
  targetCluster - name of cluster where new module will be installed if installation isGlobal
Parameters:
  license - UpdateLicense represents license name and text of license agreement UpdateItem



createModule
final public static UpdateItem createModule(String codeName, String specificationVersion, URL distribution, String author, String downloadSize, String homepage, String publishDate, String category, Manifest manifest, Boolean isEager, Boolean isAutoload, Boolean needsRestart, Boolean isGlobal, String targetCluster, UpdateLicense license)(Code)
Creates UpdateItem/code> which represents NetBeans Module in Autoupdate infrastructure. UpdateItem is identify by codeName and specificationVersion.
Parameters:
  codeName - code name of module
Parameters:
  specificationVersion - specification version of module
Parameters:
  distribution - URL to NBM file
Parameters:
  author - name of module author or null
Parameters:
  downloadSize - size of NBM file in bytes
Parameters:
  homepage - homepage of module or null
Parameters:
  publishDate - date of publish of item, in date format "yyyy/MM/dd"
Parameters:
  category - name of category
Parameters:
  manifest - java.util.jar.Manifest describes the module in NetBeans module system
Parameters:
  isEager - says if the module is eager or not
Parameters:
  isAutoload - says if the module is autoload or not
Parameters:
  needsRestart - if true then IDE must be restarted after module installation
Parameters:
  isGlobal - control if the module will be installed into the installation directory or into user's dir
Parameters:
  targetCluster - name of cluster where new module will be installed if installation isGlobal
Parameters:
  license - UpdateLicense represents license name and text of license agreement UpdateItem



createNativeComponent
final public static UpdateItem createNativeComponent(String codeName, String specificationVersion, String downloadSize, Set<String> dependencies, String displayName, String description, Boolean needsRestart, Boolean isGlobal, String targetCluster, CustomInstaller installer, UpdateLicense license)(Code)
Creates UpdateItem which represents Native Component with own installer. This component can be visualized in UI as common item, when an user wants to install this component then own CustomInstaller is call back.
Parameters:
  codeName - code name of the native component
Parameters:
  specificationVersion - specification version of component
Parameters:
  dependencies - dependencies to other UpdateItem
Parameters:
  downloadSize - size of installation file in bytes
Parameters:
  displayName - display name
Parameters:
  description - description
Parameters:
  needsRestart - if true then IDE must be restarted after component installation
Parameters:
  isGlobal - control if the control will be installed into the installation directory or into user's dir
Parameters:
  targetCluster - name of cluster where new module will be installed if installation isGlobal
Parameters:
  installer - CustomInstaller call-back interface
Parameters:
  license - UpdateLicense represents license name and text of license agreement UpdateItem



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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