Source Code Cross Referenced for MasterDetailOutput.java in  » J2EE » Dinamica » dinamica » 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 » J2EE » Dinamica » dinamica 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package dinamica;
002:
003:        import electric.xml.*;
004:
005:        /**
006:         * Generic output module to print master/detail html reports.<br>
007:         * It will require a published recordset called "group-master.sql" 
008:         * and will consume a Transaction that is a subclass of MasterDetailReader. 
009:         * It can be an instance of this class or an instance of a subclass. If your
010:         * master-detail scenario is rather simple, then this generic Transaction class
011:         * will be enough to create your report.
012:         * <br><br>
013:         * (c) 2004 Martin Cordova<br>
014:         * This code is released under the LGPL license<br>
015:         * Dinamica Framework - http://www.martincordova.com
016:         * @author Martin Cordova (dinamica@martincordova.com)
017:         * */
018:        public class MasterDetailOutput extends GenericOutput {
019:
020:            /** reference to the master recordset */
021:            private Recordset _master = null;
022:
023:            /**
024:             * Makes available the master recordset to subclasses
025:             * of this class, because it may be useful to have it when
026:             * overriding the onNewRow(...) method, which does not
027:             * receive a reference to the master recordset.
028:             * @return
029:             */
030:            protected Recordset getMaster() {
031:                return _master;
032:            }
033:
034:            /** 
035:             * Subclass GenericOutput to provide the same features
036:             * (all the PRINT commands, etc) and generates the
037:             * master/detail section of the template with one level 
038:             * of grouping. 
039:             */
040:            public void print(TemplateEngine te, GenericTransaction data)
041:                    throws Throwable {
042:
043:                //reuse superclass code
044:                super .print(te, data);
045:
046:                //retrieve master recordset
047:                Recordset master = data.getRecordset("master");
048:                _master = master;
049:
050:                //load repeatable subtemplate
051:                Element root = getConfig().getDocument().getRoot();
052:                Element gt = root.getElement("group-template");
053:                if (gt == null)
054:                    throw new Throwable(
055:                            "Element <group-template> not found in config.xml. This element is required by the class dinamica.MasterDetailOutput!");
056:
057:                //alternate colors?
058:                IRowEvent event = null;
059:                String altColors = gt.getAttribute("alternate-colors");
060:                if (altColors != null && altColors.equalsIgnoreCase("true"))
061:                    event = this ;
062:
063:                String nullExpr = gt.getAttribute("null-value");
064:                if (nullExpr == null)
065:                    nullExpr = "&nbsp;";
066:
067:                //set group template
068:                String section = getGroupTemplate(gt);
069:
070:                //buffer
071:                StringBuffer buf = new StringBuffer();
072:
073:                /* use custom locale if available */
074:                java.util.Locale l = (java.util.Locale) getSession()
075:                        .getAttribute("dinamica.user.locale");
076:
077:                //for every master record build a master/detail section
078:                master.top();
079:                while (master.next()) {
080:
081:                    //get detail rows
082:                    MasterDetailReader m = (MasterDetailReader) data;
083:                    Recordset items = m.getDetail(master);
084:
085:                    //build subpage
086:                    this .resetRowColor();
087:                    TemplateEngine t = new TemplateEngine(getContext(),
088:                            getRequest(), section);
089:                    t.setRowEventObject(event);
090:                    t.setLocale(l);
091:
092:                    //print items count if required
093:                    t.replace("${fld:detail.recordcount}", String.valueOf(items
094:                            .getRecordCount()));
095:
096:                    //replace detail rows
097:                    t.replace(items, nullExpr, "rows");
098:
099:                    //replace master record columns
100:                    t.replace(master, "&nbsp;");
101:
102:                    //append subpage section
103:                    buf.append(t.toString());
104:
105:                }
106:
107:                //replace into main template
108:                te.replace("${group}", buf.toString());
109:
110:            }
111:
112:            /**
113:             * Load repeatable subtemplate
114:             * @return repeatable subtemplate body
115:             * @throws Throwable
116:             */
117:            protected String getGroupTemplate(Element gt) throws Throwable {
118:
119:                return getResource(gt.getString());
120:
121:            }
122:
123:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.