Source Code Cross Referenced for BSGenericGenerator.java in  » UML » MetaBoss » com » metaboss » sdlctools » services » codegeneration » 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 » UML » MetaBoss » com.metaboss.sdlctools.services.codegeneration 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        // THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
02:        // CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
03:        // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
04:        // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
05:        // OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
06:        // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
07:        // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
08:        // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
09:        // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
10:        // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
11:        // EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
12:        // POSSIBILITY OF SUCH DAMAGE.
13:        //
14:        // Copyright 2000-2005 © Softaris Pty.Ltd. All Rights Reserved.
15:        package com.metaboss.sdlctools.services.codegeneration;
16:
17:        import com.metaboss.enterprise.bs.BSException;
18:
19:        /** This interface offers the facility to generate any artefact from the model.
20:         * It expects to be given an xml definition of what has to be generated. The definition
21:         * is governed by the schema.   */
22:        public interface BSGenericGenerator {
23:            /** Naming URL of the component */
24:            public static final String COMPONENT_URL = "component:/com.metaboss.sdlctools.services.codegeneration.BSGenericGenerator";
25:
26:            /** Generates any number of any kinds of files for the default model dictated by the generation plan
27:             * with the given name. The subdirectory with the same name as the specified plan name must exist on the 
28:             * path specified in com.metaboss.generation.PluginPath property which is usually set in the 
29:             * codegeneration.properties config file. 
30:             * @param pGenerationDirectoryPath directory to generate code to
31:             * @param pGenerationPlanName the logical name of the generation plan to invoke
32:             * @param pGenerationContext simple map of the values comprising generation context */
33:            public void generateDirectoryAsPerPlan(
34:                    String pGenerationDirectoryPath,
35:                    String pGenerationPlanName, java.util.Map pGenerationContext)
36:                    throws BSException;
37:
38:            /** Generates any number of any kinds of files for the required list of elements dictated by the generation plan
39:             * with the given name. The subdirectory with the same name as the specified plan name must exist on the 
40:             * path specified in com.metaboss.generation.PluginPath property which is usually set in the 
41:             * codegeneration.properties config file. 
42:             * @param pGenerationDirectoryPath directory to generate code to
43:             * @param pGenerationPlanName the logical name of the generation plan to invoke
44:             * @param pRootModelElements the collection of RefBaseObjects to use as the root elements when processing the generation plan
45:             * @param pGenerationContext simple map of the values comprising generation context */
46:            public void generateDirectoryAsPerPlan(
47:                    String pGenerationDirectoryPath,
48:                    String pGenerationPlanName,
49:                    java.util.Collection pRootModelElements,
50:                    java.util.Map pGenerationContext) throws BSException;
51:
52:            /** Generates any number of any kinds of files for the given element from the default model
53:             * dictated by the generation plan with the given name. The subdirectory with the same name as the specified plan name must exist on the 
54:             * path specified in com.metaboss.generation.PluginPath property which is usually set in the 
55:             * codegeneration.properties config file. 
56:             * @param pGenerationDirectoryPath directory to generate code to
57:             * @param pGenerationPlanName the logical name of the generation plan to invoke
58:             * @param pMetaBossModelElementRef the reference of the MetaBoss model element, which must exist in the default model
59:             * @param pGenerationContext simple map of the values comprising generation context */
60:            public void generateDirectoryAsPerPlanForMetaBossModelElement(
61:                    String pGenerationDirectoryPath,
62:                    String pGenerationPlanName,
63:                    String pMetaBossModelElementRef,
64:                    java.util.Map pGenerationContext) throws BSException;
65:
66:            /** Generates any number of any kinds of files for the default model dictated by the generation plan
67:             * with the given name. Returns the byte array containing the zipped up source. This version of the method
68:             * will use the whole model extent as an input to the generation. 
69:             * @param pGenerationPlanName the logical name of the generation plan to invoke
70:             * @param pGenerationContext simple map of the values comprising generation context */
71:            public byte[] generateZipAsPerPlan(String pGenerationPlanName,
72:                    java.util.Map pGenerationContext) throws BSException;
73:
74:            /** Generates any number of any kinds of files for the required list of elements dictated by the generation plan
75:             * with the given name. Returns the byte array containing the zipped up source. This version of the method
76:             * will use the whole model extent as an input to the generation. 
77:             * @param pGenerationPlanName the logical name of the generation plan to invoke
78:             * @param pRootModelElements the collection of RefBaseObjects to use as the root elements when processing the generation plan
79:             * @param pGenerationContext simple map of the values comprising generation context */
80:            public byte[] generateZipAsPerPlan(String pGenerationPlanName,
81:                    java.util.Collection pRootModelElements,
82:                    java.util.Map pGenerationContext) throws BSException;
83:
84:            /** Generates any number of any kinds of files for the given element from the default model
85:             * dictated by the generation plan with the given name. Returns the byte array containing the zipped up source.
86:             * This version of the method will expect the default model to be the instance of the MetaBoss Meta Model and 
87:             * will use the element with the specified ref as the root element for generation
88:             * @param pGenerationPlanName the logical name of the generation plan to invoke
89:             * @param pMetaBossModelElementRef the reference of the MetaBoss model element, which must exist in the default model
90:             * @param pGenerationContext simple map of the values comprising generation context */
91:            public byte[] generateZipAsPerPlanForMetaBossModelElement(
92:                    String pGenerationPlanName,
93:                    String pMetaBossModelElementRef,
94:                    java.util.Map pGenerationContext) throws BSException;
95:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.