Java Doc for VAIProductModel.java in  » Installer » VAInstall » com » memoire » vainstall » builder » 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 » VAInstall » com.memoire.vainstall.builder 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.memoire.vainstall.builder.VAIProductModel

VAIProductModel
public class VAIProductModel (Code)
This is a VAIProduct data model
See Also:   javax.swing.event.EventListenerList
author:
   Henrik Falk
version:
   $Id: VAIProductModel.java,v 1.1 2001/09/28 19:27:49 hfalk Exp $


Field Summary
 booleanisDirty
    
 LinkedListlanguageList
    
 EventListenerListlistenerList
    
 HashtablemasterRequiredList
    
 ProductPersisterInterfaceproductPersister
    
 HashtablepropertyList
    
 HashtablerequiredList
    
 DefaultListModelrequiredListModel
    
 LinkedListstepsList
    
 LinkedListtargetList
    

Constructor Summary
public  VAIProductModel()
    

Method Summary
public  voidaddLanguage(String value)
    
public  voidaddRequirement(String name)
    
public  voidaddStep(String type)
    
public  voidaddTarget(String value)
    
public  voidaddVAIProductListener(com.memoire.vainstall.builder.event.VAIProductListener l)
    
public  voidfireVAIProductEvent(VAIProductEvent e)
    
public  LinkedListgetLanguageList()
    
public  StringgetLicenseEncoding()
    
public  StringgetLicenseName()
    
public  StringgetPackageName()
    
public  StringgetProductDirectory()
    
public  StringgetProductName()
    
public  StringgetProductType()
    
public  StringgetProductVersion()
    
public  StringgetProperty(String name)
    
public  HashtablegetPropertyList()
    
public  StringgetReadmeEncoding()
    
public  StringgetReadmeName()
    
public  HashtablegetRequiredList()
    
public  DefaultListModelgetRequiredListModel()
    
public  LinkedListgetStepsList()
    
public  LinkedListgetTargetList()
    
public  booleanisDirty()
     Returns whether the data model needs to be saved or not.
public  voidload()
    
public  voidputProperty(String name, String value)
    
public  voidremoveLanguage(String value)
    
public  voidremoveProperty(String name)
    
public  voidremoveRequirement(String name)
    
public  voidremoveTarget(String value)
    
public  voidremoveVAIProductListener(com.memoire.vainstall.builder.event.VAIProductListener l)
    
public  voidsave()
    
public  voidsetLicenseEncoding(String value)
    
public  voidsetLicenseName(String value)
    
public  voidsetPackageName(String value)
    
public  voidsetProductDirectory(String value)
    
public  voidsetProductName(String value)
    
public  voidsetProductType(String value)
    
public  voidsetProductVersion(String value)
    
public  voidsetReadmeEncoding(String value)
    
public  voidsetReadmeName(String value)
    

Field Detail
isDirty
boolean isDirty(Code)
Flag that indicated whether the data model needs to be saved



languageList
LinkedList languageList(Code)



listenerList
EventListenerList listenerList(Code)
The list of listenere that are interested in changes in the data model



masterRequiredList
Hashtable masterRequiredList(Code)
Master list of required fields/attributes for a product before an installation package can be generated



productPersister
ProductPersisterInterface productPersister(Code)
The persistance class for this model



propertyList
Hashtable propertyList(Code)
list of properties in the format



requiredList
Hashtable requiredList(Code)
List of required fields/attributes for a product which still needs to be 'resolved' before an installation package can be generated



requiredListModel
DefaultListModel requiredListModel(Code)



stepsList
LinkedList stepsList(Code)



targetList
LinkedList targetList(Code)




Constructor Detail
VAIProductModel
public VAIProductModel()(Code)
Default constructor




Method Detail
addLanguage
public void addLanguage(String value)(Code)



addRequirement
public void addRequirement(String name)(Code)



addStep
public void addStep(String type)(Code)
Wee need to do something in the future because some new step types could be added more than once



addTarget
public void addTarget(String value)(Code)



addVAIProductListener
public void addVAIProductListener(com.memoire.vainstall.builder.event.VAIProductListener l)(Code)

Parameters:
  l - com.memoire.vainstall.builder.event.VAIProductListener



fireVAIProductEvent
public void fireVAIProductEvent(VAIProductEvent e)(Code)

Parameters:
  e - VAIProductEvent



getLanguageList
public LinkedList getLanguageList()(Code)



getLicenseEncoding
public String getLicenseEncoding()(Code)



getLicenseName
public String getLicenseName()(Code)



getPackageName
public String getPackageName()(Code)



getProductDirectory
public String getProductDirectory()(Code)
Returns the the product work directory The product work directory



getProductName
public String getProductName()(Code)
Returns the name of the product The name of the product



getProductType
public String getProductType()(Code)



getProductVersion
public String getProductVersion()(Code)
Returns the version of the product The version of the product



getProperty
public String getProperty(String name)(Code)



getPropertyList
public Hashtable getPropertyList()(Code)
Convenience method to access properties directly a list of builder properties



getReadmeEncoding
public String getReadmeEncoding()(Code)



getReadmeName
public String getReadmeName()(Code)



getRequiredList
public Hashtable getRequiredList()(Code)



getRequiredListModel
public DefaultListModel getRequiredListModel()(Code)



getStepsList
public LinkedList getStepsList()(Code)



getTargetList
public LinkedList getTargetList()(Code)



isDirty
public boolean isDirty()(Code)
Returns whether the data model needs to be saved or not. true if the datamodel needs to be saved



load
public void load() throws VAIBuilderException(Code)
Load project data from datastore
throws:
  com.memoire.vainstall.builder.util.VAIBuilderException -



putProperty
public void putProperty(String name, String value)(Code)



removeLanguage
public void removeLanguage(String value)(Code)



removeProperty
public void removeProperty(String name)(Code)



removeRequirement
public void removeRequirement(String name)(Code)



removeTarget
public void removeTarget(String value)(Code)



removeVAIProductListener
public void removeVAIProductListener(com.memoire.vainstall.builder.event.VAIProductListener l)(Code)

Parameters:
  l - com.memoire.vainstall.builder.event.VAIProductListener



save
public void save() throws VAIBuilderException(Code)
Store project data in datastore
throws:
  com.memoire.vainstall.builder.util.VAIBuilderException -



setLicenseEncoding
public void setLicenseEncoding(String value)(Code)



setLicenseName
public void setLicenseName(String value)(Code)



setPackageName
public void setPackageName(String value)(Code)



setProductDirectory
public void setProductDirectory(String value)(Code)
Set the product work directory
Parameters:
  productDirectory - The work directory of the project



setProductName
public void setProductName(String value)(Code)
Set the product name
Parameters:
  productName - The name of the product



setProductType
public void setProductType(String value)(Code)



setProductVersion
public void setProductVersion(String value)(Code)
Set the product version
Parameters:
  productVersion - The version of the product



setReadmeEncoding
public void setReadmeEncoding(String value)(Code)



setReadmeName
public void setReadmeName(String value)(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.