Source Code Cross Referenced for FOM_SimpleCocoon.java in  » Content-Management-System » apache-lenya-2.0 » org » apache » cocoon » forms » util » 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 » apache lenya 2.0 » org.apache.cocoon.forms.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         * 
009:         *      http://www.apache.org/licenses/LICENSE-2.0
010:         * 
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:        package org.apache.cocoon.forms.util;
018:
019:        import java.util.Map;
020:
021:        import org.apache.cocoon.components.flow.javascript.fom.FOM_Cocoon;
022:        import org.apache.cocoon.components.flow.javascript.fom.FOM_Cocoon.FOM_Context;
023:        import org.apache.cocoon.components.flow.javascript.fom.FOM_Cocoon.FOM_Request;
024:        import org.apache.cocoon.components.flow.javascript.fom.FOM_Cocoon.FOM_Session;
025:        import org.apache.cocoon.environment.ObjectModelHelper;
026:        import org.mozilla.javascript.Scriptable;
027:        import org.mozilla.javascript.ScriptableObject;
028:
029:        /**
030:         * A simplified javascript cocoon object to use when using javaflow. In that case
031:         * the cocoon object would not be accessible from definition javascript snippets.
032:         */
033:        public class FOM_SimpleCocoon extends ScriptableObject {
034:
035:            private Map objectModel;
036:
037:            public String getClassName() {
038:                return "FOM_SimpleCocoon";
039:            }
040:
041:            private FOM_Cocoon.FOM_Request request;
042:            private FOM_Cocoon.FOM_Context context;
043:            private FOM_Cocoon.FOM_Session session;
044:
045:            private Scriptable response;
046:
047:            //private Scriptable parameters;
048:
049:            public Scriptable jsGet_request() {
050:                return getRequest();
051:            }
052:
053:            public Scriptable jsGet_response() {
054:                return getResponse();
055:            }
056:
057:            public Scriptable jsGet_context() {
058:                return getContext();
059:            }
060:
061:            public Scriptable jsGet_session() {
062:                return getSession();
063:            }
064:
065:            /**
066:             * Get Sitemap parameters
067:             *
068:             * @return a <code>Scriptable</code> value whose properties represent
069:             * the Sitemap parameters from <map:call>
070:             */
071:            public Scriptable jsGet_parameters() {
072:                //return getParameters();
073:                // TODO parameters are accessible someway?
074:                return null;
075:            }
076:
077:            public Scriptable getSession() {
078:                if (session != null) {
079:                    return session;
080:                }
081:                session = new FOM_Session(getParentScope(), ObjectModelHelper
082:                        .getRequest(objectModel).getSession(true));
083:                return session;
084:            }
085:
086:            public Scriptable getRequest() {
087:                if (request != null) {
088:                    return request;
089:                }
090:                request = new FOM_Request(getParentScope(), ObjectModelHelper
091:                        .getRequest(objectModel));
092:                return request;
093:            }
094:
095:            public Scriptable getContext() {
096:                if (context != null) {
097:                    return context;
098:                }
099:                context = new FOM_Context(getParentScope(), ObjectModelHelper
100:                        .getContext(objectModel));
101:                return context;
102:            }
103:
104:            public Scriptable getResponse() {
105:                if (response != null) {
106:                    return response;
107:                }
108:                response = org.mozilla.javascript.Context.toObject(
109:                        ObjectModelHelper.getResponse(objectModel),
110:                        getParentScope());
111:                return response;
112:            }
113:
114:            public void setObjectModel(Map objectModel) {
115:                this.objectModel = objectModel;
116:            }
117:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.