Source Code Cross Referenced for Component.java in  » Content-Management-System » hippo-cms » nl » hippo » cms » wizard » components » 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 » Content Management System » hippo cms » nl.hippo.cms.wizard.components 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package nl.hippo.cms.wizard.components;
02:
03:        import nl.hippo.cms.wizard.WizardResult;
04:
05:        import org.springframework.web.context.WebApplicationContext;
06:
07:        /**
08:         * Base interface for all components in the wizard component model.
09:         *   
10:         * @author a.bogaart@hippo.nl
11:         *
12:         */
13:        public interface Component extends Configurable, Initializable {
14:
15:            /**
16:             * Return the value that will be used for the path of the new document.
17:             * If starts with / it means the value will be used as the current root.
18:             * @return value of path 
19:             */
20:            String getPath();
21:
22:            /**
23:             * Return unique id
24:             * @return value of id
25:             */
26:            String getId();
27:
28:            /**
29:             * Return component type, used to identify a component in the Cforms model/binding/template templates
30:             * @return value of type     
31:             */
32:            String getType();
33:
34:            /**
35:             * Return i18n key for Cforms labels
36:             * @return value of label
37:             */
38:            String getLabel();
39:
40:            /**
41:             * Return i18n catalogue to provide easy extensibility of i18n keys
42:             * @return value of label catalogue
43:             */
44:            String getLabelCatalogue();
45:
46:            /**
47:             * Flag component to skip adding it's path value to the WizardResult instance
48:             */
49:            void skipPath();
50:
51:            /**
52:             * Flag component to lowercase the path value to the WizardResult instance
53:             */
54:            void lowerCasePath();
55:
56:            /**
57:             * Fill the wizardResult instance with values that are required to create a new document.
58:             * Every component will add it's path and id value by default (unless path value is set to skip).
59:             * A Spring webApplicationContext is provided for lookup of external components like the types model.
60:             * @param result Wizard result instance
61:             * @param context Spring webAppContext
62:             * @throws Exception
63:             */
64:            void fillResult(WizardResult result, WebApplicationContext context)
65:                    throws Exception;
66:
67:            /**
68:             * Reset the component state so that it can be reused. 
69:             */
70:            void reset();
71:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.