Source Code Cross Referenced for IndirectableLocation.java in  » Scripting » Kawa » gnu » mapping » 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 » Scripting » Kawa » gnu.mapping 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        // Copyright (c) 2004  Per M.A. Bothner.
02:        // This is free software;  for terms and warranty disclaimer see ./COPYING.
03:
04:        package gnu.mapping;
05:
06:        public abstract class IndirectableLocation extends Location {
07:            /** If <code>value==DIRECT_ON_SET</code>, break indirection on a <code>set</code>. */
08:            protected static final Object DIRECT_ON_SET = new String(
09:                    "(direct-on-set)");
10:
11:            /** If <code>value</code> has this value, force indirection even
12:             * for the <code>setWithSave</code> operation.
13:             * Ignoring the restore aspect of a <code>fluid-let</code>, it is normally
14:             * treated as closer to a <code>define</code> than to a <code>set</code>,
15:             * in that we break the sharing with another <code>Environment</code>.
16:             * Setting <code>value</code> to <code>INDIRECT_FLUIDS</code> means we do
17:             * <em>not</em> want to break the indirection in this case. */
18:            protected static final Object INDIRECT_FLUIDS = new String(
19:                    "(indirect-fluids)");
20:
21:            /** If non-null, operations are forwarded to the base location. */
22:            protected Location base;
23:
24:            /** If <code>base</code> is null, the current value stored in
25:             * this <code>Location</code>.
26:             * If <code>base</code> is non-null, then <code>value</code> is generally
27:             * ignored.  However, the special value <code>DIRECT_ON_SET</code> means that
28:             * writes change change <code>value</code> directly, instead of setting
29:             * the value of <code>base</code>.
30:             */
31:            protected Object value;
32:
33:            public Symbol getKeySymbol() {
34:                return base != null ? base.getKeySymbol() : null;
35:            }
36:
37:            public Object getKeyProperty() {
38:                return base != null ? base.getKeyProperty() : null;
39:            }
40:
41:            public boolean isConstant() {
42:                return base != null && base.isConstant();
43:            }
44:
45:            public Location getBase() {
46:                return base == null ? this  : base.getBase();
47:            }
48:
49:            public Location getBaseForce() {
50:                if (base == null)
51:                    return new PlainLocation(getKeySymbol(), getKeyProperty(),
52:                            value);
53:                else
54:                    return base;
55:            }
56:
57:            public void setBase(Location base) {
58:                this .base = base;
59:                this .value = null;
60:            }
61:
62:            /** Define this Location as an alias for some other Location. */
63:            public void setAlias(Location base) {
64:                this .base = base;
65:                this .value = INDIRECT_FLUIDS;
66:            }
67:
68:            public void undefine() {
69:                base = null;
70:                value = UNBOUND;
71:            }
72:
73:            public Environment getEnvironment() {
74:                return (base instanceof  NamedLocation ? ((NamedLocation) base)
75:                        .getEnvironment() : null);
76:            }
77:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.