Java Doc for Info.java in  » Installer » IzPack » com » izforge » izpack » 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 » Installer » IzPack » com.izforge.izpack 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.izforge.izpack.Info

Info
public class Info implements Serializable(Code)
Contains some informations for an installer, as defined in the section of the XML files.
author:
   Julien Ponge

Inner Class :public static class Author implements Serializable

Field Summary
final static  longserialVersionUID
    

Constructor Summary
public  Info()
     The constructor, deliberatly void.

Method Summary
public  voidaddAuthor(Author author)
     Adds an author to the authors list.
public  StringgetAppName()
     Gets the application name.
public  StringgetAppURL()
     Gets the application URL.
public  StringgetAppVersion()
     Gets the version.
public  ArrayList<Author>getAuthors()
     Gets the authors list.
public  StringgetInstallationSubPath()
     Gets the installation subpath.
public  StringgetInstallerBase()
     Gets the installer name.
public  StringgetJavaVersion()
     Gets the Java version required.
public  StringgetPackDecoderClassName()
     Returns the full qualified class name of the class which should be used for decoding the packs.
public  StringgetSummaryLogFilePath()
     Returns the summary log file path.
public  StringgetUninstallerName()
     Returns the name of the uninstaller.
public  StringgetUnpackerClassName()
    
public  StringgetWebDirURL()
    
public  booleanisJdkRequired()
    
public  booleanisWriteInstallationInformation()
    
public  voidsetAppName(String appName)
     Sets the application name.
public  voidsetAppURL(String appURL)
     Sets the application URL.
public  voidsetAppVersion(String appVersion)
     Sets the version.
public  voidsetInstallationSubPath(String string)
     Sets the installation subpath.
public  voidsetInstallerBase(String installerBase)
     Sets the installer name.
public  voidsetJavaVersion(String javaVersion)
     Sets the minimum Java version required.
public  voidsetJdkRequired(boolean jdkRequired)
    
public  voidsetPackDecoderClassName(String packDecoderClassName)
     Sets the full qualified class name of the class which should be used for decoding the packs.
public  voidsetSummaryLogFilePath(String summaryLogFilePath)
     Sets the summary log file path.
public  voidsetUninstallerName(String name)
     Sets the name of the uninstaller.
public  voidsetUnpackerClassName(String unpackerClassName)
    
public  voidsetWebDirURL(String url)
     Sets the webDir URL.
public  voidsetWriteInstallationInformation(boolean writeInstallationInformation)
    

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
Info
public Info()(Code)
The constructor, deliberatly void.




Method Detail
addAuthor
public void addAuthor(Author author)(Code)
Adds an author to the authors list.
Parameters:
  author - The author to add.



getAppName
public String getAppName()(Code)
Gets the application name. The application name.



getAppURL
public String getAppURL()(Code)
Gets the application URL. The application URL.



getAppVersion
public String getAppVersion()(Code)
Gets the version. The application version.



getAuthors
public ArrayList<Author> getAuthors()(Code)
Gets the authors list. The authors list.



getInstallationSubPath
public String getInstallationSubPath()(Code)
Gets the installation subpath. the installation subpath



getInstallerBase
public String getInstallerBase()(Code)
Gets the installer name. The name of the installer file, without the jar suffix.



getJavaVersion
public String getJavaVersion()(Code)
Gets the Java version required. The Java version.



getPackDecoderClassName
public String getPackDecoderClassName()(Code)
Returns the full qualified class name of the class which should be used for decoding the packs. Returns the packDecoderClassName.



getSummaryLogFilePath
public String getSummaryLogFilePath()(Code)
Returns the summary log file path. the summary log file path



getUninstallerName
public String getUninstallerName()(Code)
Returns the name of the uninstaller. the name of the uninstaller.



getUnpackerClassName
public String getUnpackerClassName()(Code)



getWebDirURL
public String getWebDirURL()(Code)
Gets the webDir URL if it has been specified The webDir URL from which the installer is retrieved, or null if non hasbeen set.



isJdkRequired
public boolean isJdkRequired()(Code)



isWriteInstallationInformation
public boolean isWriteInstallationInformation()(Code)



setAppName
public void setAppName(String appName)(Code)
Sets the application name.
Parameters:
  appName - The new application name.



setAppURL
public void setAppURL(String appURL)(Code)
Sets the application URL.
Parameters:
  appURL - The application URL.



setAppVersion
public void setAppVersion(String appVersion)(Code)
Sets the version.
Parameters:
  appVersion - The application version.



setInstallationSubPath
public void setInstallationSubPath(String string)(Code)
Sets the installation subpath.
Parameters:
  string - subpath to be set



setInstallerBase
public void setInstallerBase(String installerBase)(Code)
Sets the installer name.
Parameters:
  installerBase - The new installer name.



setJavaVersion
public void setJavaVersion(String javaVersion)(Code)
Sets the minimum Java version required.
Parameters:
  javaVersion - The Java version.



setJdkRequired
public void setJdkRequired(boolean jdkRequired)(Code)



setPackDecoderClassName
public void setPackDecoderClassName(String packDecoderClassName)(Code)
Sets the full qualified class name of the class which should be used for decoding the packs.
Parameters:
  packDecoderClassName - The packDecoderClassName to set.



setSummaryLogFilePath
public void setSummaryLogFilePath(String summaryLogFilePath)(Code)
Sets the summary log file path.
Parameters:
  summaryLogFilePath - the summary log file path to set



setUninstallerName
public void setUninstallerName(String name)(Code)
Sets the name of the uninstaller.
Parameters:
  name - the name of the uninstaller.



setUnpackerClassName
public void setUnpackerClassName(String unpackerClassName)(Code)



setWebDirURL
public void setWebDirURL(String url)(Code)
Sets the webDir URL.
Parameters:
  url - The application URL.



setWriteInstallationInformation
public void setWriteInstallationInformation(boolean writeInstallationInformation)(Code)



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.