Source Code Cross Referenced for CollectionManager.java in  » Swing-Library » jEdit » org » gjt » sp » jedit » bsh » 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 » Swing Library » jEdit » org.gjt.sp.jedit.bsh 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*****************************************************************************
002:         *                                                                           *
003:         *  This file is part of the BeanShell Java Scripting distribution.          *
004:         *  Documentation and updates may be found at http://www.beanshell.org/      *
005:         *                                                                           *
006:         *  Sun Public License Notice:                                               *
007:         *                                                                           *
008:         *  The contents of this file are subject to the Sun Public License Version  *
009:         *  1.0 (the "License"); you may not use this file except in compliance with *
010:         *  the License. A copy of the License is available at http://www.sun.com    * 
011:         *                                                                           *
012:         *  The Original Code is BeanShell. The Initial Developer of the Original    *
013:         *  Code is Pat Niemeyer. Portions created by Pat Niemeyer are Copyright     *
014:         *  (C) 2000.  All Rights Reserved.                                          *
015:         *                                                                           *
016:         *  GNU Public License Notice:                                               *
017:         *                                                                           *
018:         *  Alternatively, the contents of this file may be used under the terms of  *
019:         *  the GNU Lesser General Public License (the "LGPL"), in which case the    *
020:         *  provisions of LGPL are applicable instead of those above. If you wish to *
021:         *  allow use of your version of this file only under the  terms of the LGPL *
022:         *  and not to allow others to use your version of this file under the SPL,  *
023:         *  indicate your decision by deleting the provisions above and replace      *
024:         *  them with the notice and other provisions required by the LGPL.  If you  *
025:         *  do not delete the provisions above, a recipient may use your version of  *
026:         *  this file under either the SPL or the LGPL.                              *
027:         *                                                                           *
028:         *  Patrick Niemeyer (pat@pat.net)                                           *
029:         *  Author of Learning Java, O'Reilly & Associates                           *
030:         *  http://www.pat.net/~pat/                                                 *
031:         *                                                                           *
032:         *****************************************************************************/package org.gjt.sp.jedit.bsh;
033:
034:        import java.util.Enumeration;
035:        import java.util.Vector;
036:        import java.util.Hashtable;
037:        import java.lang.reflect.Array;
038:
039:        /**
040:         The default CollectionManager (which remains Java 1.1 compatible) 
041:         supports iteration over objects of type:
042:         Enumeration, Vector, String, StringBuffer and array.
043:         The dynamically loaded CollectionManagerImpl supports additional types when
044:         it is present.
045:
046:         @see BshIterable.java
047:         */
048:        public class CollectionManager {
049:            private static CollectionManager manager;
050:
051:            public synchronized static CollectionManager getCollectionManager() {
052:                if (manager == null
053:                        && Capabilities.classExists("java.util.Collection")) {
054:                    Class clas;
055:                    try {
056:                        clas = Class
057:                                .forName("org.gjt.sp.jedit.bsh.collection.CollectionManagerImpl");
058:                        manager = (CollectionManager) clas.newInstance();
059:                    } catch (Exception e) {
060:                        Interpreter
061:                                .debug("unable to load CollectionManagerImpl: "
062:                                        + e);
063:                    }
064:                }
065:
066:                if (manager == null)
067:                    manager = new CollectionManager(); // default impl
068:
069:                return manager;
070:            }
071:
072:            /**
073:             */
074:            public boolean isBshIterable(Object obj) {
075:                // This could be smarter...
076:                try {
077:                    getBshIterator(obj);
078:                    return true;
079:                } catch (IllegalArgumentException e) {
080:                    return false;
081:                }
082:            }
083:
084:            public BshIterator getBshIterator(Object obj)
085:                    throws IllegalArgumentException {
086:                return new BasicBshIterator(obj);
087:            }
088:
089:            public boolean isMap(Object obj) {
090:                return obj instanceof  Hashtable;
091:            }
092:
093:            public Object getFromMap(Object map, Object key) {
094:                return ((Hashtable) map).get(key);
095:            }
096:
097:            public Object putInMap(Object map, Object key, Object value) {
098:                return ((Hashtable) map).put(key, value);
099:            }
100:
101:            /**
102:            	Determine dynamically if the target is an iterator by the presence of a
103:            	pair of next() and hasNext() methods.
104:            public static boolean isIterator() { }
105:             */
106:
107:            /**
108:             * An implementation that works with JDK 1.1
109:             */
110:            public static class BasicBshIterator implements  BshIterator {
111:                Enumeration enumeration;
112:
113:                /**
114:                 * Construct a basic BasicBshIterator
115:                 *
116:                 * @param The object over which we are iterating
117:                 *
118:                 * @throws java.lang.IllegalArgumentException If the argument is not a
119:                 * supported (i.e. iterable) type.
120:                 *
121:                 * @throws java.lang.NullPointerException If the argument is null
122:                 */
123:                public BasicBshIterator(Object iterateOverMe) {
124:                    enumeration = createEnumeration(iterateOverMe);
125:                }
126:
127:                /**
128:                 * Create an enumeration over the given object
129:                 *
130:                 * @param iterateOverMe Object of type Enumeration, Vector, String, 
131:                 *                      StringBuffer or an array
132:                 *
133:                 * @return an enumeration
134:                 *
135:                 * @throws java.lang.IllegalArgumentException If the argument is not a
136:                 * supported (i.e. iterable) type.
137:                 *
138:                 * @throws java.lang.NullPointerException If the argument is null
139:                 */
140:                protected Enumeration createEnumeration(Object iterateOverMe) {
141:                    if (iterateOverMe == null)
142:                        throw new NullPointerException(
143:                                "Object arguments passed to "
144:                                        + "the BasicBshIterator constructor cannot be null.");
145:
146:                    if (iterateOverMe instanceof  Enumeration)
147:                        return (Enumeration) iterateOverMe;
148:
149:                    if (iterateOverMe instanceof  Vector)
150:                        return ((Vector) iterateOverMe).elements();
151:
152:                    if (iterateOverMe.getClass().isArray()) {
153:                        final Object array = iterateOverMe;
154:                        return new Enumeration() {
155:                            int index = 0, length = Array.getLength(array);
156:
157:                            public Object nextElement() {
158:                                return Array.get(array, index++);
159:                            }
160:
161:                            public boolean hasMoreElements() {
162:                                return index < length;
163:                            }
164:                        };
165:                    }
166:
167:                    if (iterateOverMe instanceof  String)
168:                        return createEnumeration(((String) iterateOverMe)
169:                                .toCharArray());
170:
171:                    if (iterateOverMe instanceof  StringBuffer)
172:                        return createEnumeration(iterateOverMe.toString()
173:                                .toCharArray());
174:
175:                    throw new IllegalArgumentException(
176:                            "Cannot enumerate object of type "
177:                                    + iterateOverMe.getClass());
178:                }
179:
180:                /**
181:                 * Fetch the next object in the iteration
182:                 *
183:                 * @return The next object
184:                 */
185:                public Object next() {
186:                    return enumeration.nextElement();
187:                }
188:
189:                /**
190:                 * Returns true if and only if there are more objects available
191:                 * via the <code>next()</code> method
192:                 *
193:                 * @return The next object
194:                 */
195:                public boolean hasNext() {
196:                    return enumeration.hasMoreElements();
197:                }
198:            }
199:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.