Source Code Cross Referenced for DVSLNodeContext.java in  » Template-Engine » Velocity » org » apache » dvsl » 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 » Template Engine » Velocity » org.apache.dvsl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.apache.dvsl;
002:
003:        /*
004:         * Licensed to the Apache Software Foundation (ASF) under one
005:         * or more contributor license agreements.  See the NOTICE file
006:         * distributed with this work for additional information
007:         * regarding copyright ownership.  The ASF licenses this file
008:         * to you under the Apache License, Version 2.0 (the
009:         * "License"); you may not use this file except in compliance
010:         * with the License.  You may obtain a copy of the License at
011:         *
012:         *   http://www.apache.org/licenses/LICENSE-2.0
013:         *
014:         * Unless required by applicable law or agreed to in writing,
015:         * software distributed under the License is distributed on an
016:         * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017:         * KIND, either express or implied.  See the License for the
018:         * specific language governing permissions and limitations
019:         * under the License.
020:         */
021:
022:        import java.util.List;
023:        import java.util.ArrayList;
024:        import java.util.Map;
025:        import java.util.HashMap;
026:        import java.util.Stack;
027:
028:        import org.apache.velocity.context.Context;
029:        import org.apache.velocity.VelocityContext;
030:
031:        /**
032:         *  <p>
033:         *  Context implementation that is the outer context
034:         *  during the transformation.  Holds the node stack
035:         *  and also protects the 'special' context elements
036:         *  like 'node'
037:         *  </p>
038:         *  <p>
039:         *  There are special elements like 'node', which is
040:         *  readonly and corresponds to the current node, and
041:         *  'attrib', which corresponds to a map of attributes
042:         *  for the current node.
043:         *  </p>
044:         *
045:         *  @author <a href="mailto:geirm@apache.org">Geir Magnusson Jr.</a>
046:         */
047:        class DVSLNodeContext extends VelocityContext {
048:
049:            /**
050:             *  Magic context entity that corresponds
051:             *  to the current node
052:             */
053:            private final static String NODE = "node";
054:
055:            /**
056:             *  Magic context entity that corresponds to
057:             *  a Map of attributes for the current node
058:             */
059:            private final static String ATTRIB = "attrib";
060:
061:            /**
062:             *  Used to hold the nodes as we get invoked from
063:             *  within the document for applyTemplates() duties
064:             */
065:            private Stack nodeStack = new Stack();
066:
067:            protected Map ctx = new HashMap();
068:
069:            public DVSLNodeContext(Context context) {
070:                super (context);
071:            }
072:
073:            private DVSLNodeContext() {
074:            }
075:
076:            /**
077:             *  retrieves value for key from internal
078:             *  storage
079:             *
080:             *  @param key name of value to get
081:             *  @return value as object
082:             */
083:            public Object internalGet(String key) {
084:                Object o = null;
085:
086:                /*
087:                 *  special token : NODE
088:                 *
089:                 *  returns current node
090:                 */
091:
092:                if (key.equals(NODE)) {
093:                    return peekNode();
094:                }
095:
096:                /*
097:                 *  ATTRIB - returns attribute map
098:                 */
099:
100:                if (key.equals(ATTRIB)) {
101:                    DVSLNode n = peekNode();
102:
103:                    return n.getAttribMap();
104:                }
105:
106:                /*
107:                 *  start with local storage
108:                 */
109:
110:                return ctx.get(key);
111:            }
112:
113:            /**
114:             *  stores the value for key to internal
115:             *  storage
116:             *
117:             *  @param key name of value to store
118:             *  @param value value to store
119:             *  @return previous value of key as Object
120:             */
121:            public Object internalPut(String key, Object value) {
122:                /*
123:                 *  protect both NODE and ATTRIB for now.  We
124:                 *  might want to let people set ATTRIB, but
125:                 *  I suspect not
126:                 */
127:
128:                if (key.equals(NODE))
129:                    return null;
130:
131:                if (key.equals(ATTRIB))
132:                    return null;
133:
134:                return ctx.put(key, value);
135:            }
136:
137:            /**
138:             *  determines if there is a value for the
139:             *  given key
140:             *
141:             *  @param key name of value to check
142:             *  @return true if non-null value in store
143:             */
144:            public boolean internalContainsKey(Object key) {
145:                return ctx.containsKey(key);
146:            }
147:
148:            /**
149:             *  returns array of keys
150:             *
151:             *  $$$ GMJ todo
152:             *
153:             *  @return keys as []
154:             */
155:            public Object[] internalGetKeys() {
156:                return null;
157:            }
158:
159:            /**
160:             *  remove a key/value pair from the
161:             *  internal storage
162:             *
163:             *  @param key name of value to remove
164:             *  @return value removed
165:             */
166:            public Object internalRemove(Object key) {
167:                return ctx.remove(key);
168:            }
169:
170:            /* === routines to manage current node stack === */
171:
172:            DVSLNode pushNode(DVSLNode n) {
173:                nodeStack.push(n);
174:                return n;
175:            }
176:
177:            DVSLNode peekNode() {
178:                return (DVSLNode) nodeStack.peek();
179:            }
180:
181:            DVSLNode popNode() {
182:                return (DVSLNode) nodeStack.pop();
183:            }
184:
185:            void clearNode() {
186:                nodeStack.clear();
187:                return;
188:            }
189:
190:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.