Source Code Cross Referenced for Gui4jComponentContainer.java in  » XML-UI » gui4j » org » gui4j » core » 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 » XML UI » gui4j » org.gui4j.core 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.gui4j.core;
002:
003:        import java.util.Map;
004:        import java.util.Set;
005:
006:        import org.dom4j.LElement;
007:
008:        /**
009:         * Contains the Gui4jComponent instances for a given resource file resolved for a given
010:         * controller class type
011:         */
012:        public interface Gui4jComponentContainer {
013:            /**
014:             * @param e
015:             * @return Gui4QualifiedComponent the gui4jComponent represented by the element
016:             */
017:            public Gui4jQualifiedComponent extractGui4jComponent(LElement e);
018:
019:            /**
020:             * inserts additional attributes into the element correspondingly to defined styles
021:             * @param e
022:             */
023:            public void autoExtend(LElement e);
024:
025:            /**
026:             * @param e
027:             * @param field
028:             * @return the attribute value of the field <code>field</code> where occuring
029:             * macros are substituted by their definitions
030:             */
031:            public String getAttrValue(LElement e, String field);
032:
033:            /**
034:             * @param e
035:             * @param field
036:             * @param dflt
037:             * @return the attribute value of the field <code>field</code> where occuring
038:             * macros are substituted by their definitions
039:             */
040:            public boolean getBooleanAttrValue(LElement e, String field,
041:                    boolean dflt);
042:
043:            /**
044:             * @param e
045:             * @param field
046:             * @return the attribute value of the field <code>field</code> where occuring
047:             * macros are substituted by their definitions (macros my also occur inside a string)
048:             */
049:            public String getAttrValueReplaceAll(LElement e, String field);
050:
051:            /**
052:             * @param field
053:             * @return the attribute value of <code>field</code> of the
054:             * topmost element of the resource.
055:             */
056:            String getToplevelAttrValue(String field);
057:
058:            /**
059:             * Throws an exception if the corresponding component is not defined
060:             * @param id
061:             * @return Gui4jQualifiedComponent
062:             */
063:            public Gui4jQualifiedComponent getGui4jQualifiedComponent(String id);
064:
065:            /**
066:             * @param id
067:             * @return true if a component with the given id is defined, otherwise false
068:             */
069:            public boolean isDefined(String id);
070:
071:            /**
072:             * @return the controller class type used for this container
073:             */
074:            public Class getGui4jControllerClass();
075:
076:            /**
077:             * @param aliasName
078:             * @return the class instance for a given alias name
079:             */
080:            public Class getClassForAliasName(String aliasName);
081:
082:            public Gui4jInternal getGui4j();
083:
084:            /**
085:             * @return the name of the resource definition file
086:             */
087:            public String getConfigurationName();
088:
089:            /**
090:             * Liefert die Menge der zu setzenden Parameter beim Inlcudes des Containers
091:             * @return Set(String)
092:             */
093:            Set getParamIds();
094:
095:            /**
096:             * Liefert die Menge der Ids zurück welche durch Parameterinstanziierung
097:             * benötigt werden
098:             * @return Set
099:             */
100:            Set getMappedIds();
101:
102:            /**
103:             * Method getParamInstantiation.
104:             * @return Map(Gui4jQualifiedComponent -> Gui4jQualifiedComponent)
105:             */
106:            Map getParamInstantiation();
107:
108:            // public List getGui4jComponentContainerIncludePath(Gui4jComponentContainer gui4jComponentContainer);
109:
110:            Gui4jCall getTitleCall();
111:
112:            Gui4jCall getWindowNameCall();
113:
114:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.