Source Code Cross Referenced for ArrayListFacade.java in  » Database-DBMS » db4o-6.4 » com » db4o » collections » facades » 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 » Database DBMS » db4o 6.4 » com.db4o.collections.facades 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* Copyright (C) 2004 - 2007  db4objects Inc.  http://www.db4o.com
002:
003:        This file is part of the db4o open source object database.
004:
005:        db4o is free software; you can redistribute it and/or modify it under
006:        the terms of version 2 of the GNU General Public License as published
007:        by the Free Software Foundation and as clarified by db4objects' GPL 
008:        interpretation policy, available at
009:        http://www.db4o.com/about/company/legalpolicies/gplinterpretation/
010:        Alternatively you can write to db4objects, Inc., 1900 S Norfolk Street,
011:        Suite 350, San Mateo, CA 94403, USA.
012:
013:        db4o is distributed in the hope that it will be useful, but WITHOUT ANY
014:        WARRANTY; without even the implied warranty of MERCHANTABILITY or
015:        FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
016:        for more details.
017:
018:        You should have received a copy of the GNU General Public License along
019:        with this program; if not, write to the Free Software Foundation, Inc.,
020:        59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. */
021:        package com.db4o.collections.facades;
022:
023:        import java.util.*;
024:
025:        import com.db4o.internal.collections.*;
026:
027:        /**
028:         * @exclude
029:         */
030:        public class ArrayListFacade extends ArrayList {
031:
032:            public PersistentList _delegate;
033:
034:            public void add(int index, Object element) {
035:                // TODO Auto-generated method stub
036:                super .add(index, element);
037:            }
038:
039:            public boolean add(Object o) {
040:                // TODO Auto-generated method stub
041:                return super .add(o);
042:            }
043:
044:            public boolean addAll(Collection c) {
045:                // TODO Auto-generated method stub
046:                return super .addAll(c);
047:            }
048:
049:            public boolean addAll(int index, Collection c) {
050:                // TODO Auto-generated method stub
051:                return super .addAll(index, c);
052:            }
053:
054:            public void clear() {
055:                // TODO Auto-generated method stub
056:                super .clear();
057:            }
058:
059:            public Object clone() {
060:                // TODO Auto-generated method stub
061:                return super .clone();
062:            }
063:
064:            public boolean contains(Object elem) {
065:                // TODO Auto-generated method stub
066:                return super .contains(elem);
067:            }
068:
069:            public void ensureCapacity(int minCapacity) {
070:                // TODO Auto-generated method stub
071:                super .ensureCapacity(minCapacity);
072:            }
073:
074:            public Object get(int index) {
075:                // TODO Auto-generated method stub
076:                return super .get(index);
077:            }
078:
079:            public int indexOf(Object elem) {
080:                // TODO Auto-generated method stub
081:                return super .indexOf(elem);
082:            }
083:
084:            public boolean isEmpty() {
085:                // TODO Auto-generated method stub
086:                return super .isEmpty();
087:            }
088:
089:            public int lastIndexOf(Object elem) {
090:                // TODO Auto-generated method stub
091:                return super .lastIndexOf(elem);
092:            }
093:
094:            public Object remove(int index) {
095:                // TODO Auto-generated method stub
096:                return super .remove(index);
097:            }
098:
099:            protected void removeRange(int fromIndex, int toIndex) {
100:                // TODO Auto-generated method stub
101:                super .removeRange(fromIndex, toIndex);
102:            }
103:
104:            public Object set(int index, Object element) {
105:                // TODO Auto-generated method stub
106:                return super .set(index, element);
107:            }
108:
109:            public int size() {
110:                // TODO Auto-generated method stub
111:                return super .size();
112:            }
113:
114:            public Object[] toArray() {
115:                // TODO Auto-generated method stub
116:                return super .toArray();
117:            }
118:
119:            public Object[] toArray(Object[] a) {
120:                // TODO Auto-generated method stub
121:                return super .toArray(a);
122:            }
123:
124:            public void trimToSize() {
125:                // TODO Auto-generated method stub
126:                super .trimToSize();
127:            }
128:
129:            public boolean equals(Object o) {
130:                // TODO Auto-generated method stub
131:                return super .equals(o);
132:            }
133:
134:            public int hashCode() {
135:                // TODO Auto-generated method stub
136:                return super .hashCode();
137:            }
138:
139:            public Iterator iterator() {
140:                // TODO Auto-generated method stub
141:                return super .iterator();
142:            }
143:
144:            public ListIterator listIterator() {
145:                // TODO Auto-generated method stub
146:                return super .listIterator();
147:            }
148:
149:            public ListIterator listIterator(int index) {
150:                // TODO Auto-generated method stub
151:                return super .listIterator(index);
152:            }
153:
154:            public List subList(int fromIndex, int toIndex) {
155:                // TODO Auto-generated method stub
156:                return super .subList(fromIndex, toIndex);
157:            }
158:
159:            public boolean containsAll(Collection c) {
160:                // TODO Auto-generated method stub
161:                return super .containsAll(c);
162:            }
163:
164:            public boolean remove(Object o) {
165:                // TODO Auto-generated method stub
166:                return super .remove(o);
167:            }
168:
169:            public boolean removeAll(Collection c) {
170:                // TODO Auto-generated method stub
171:                return super .removeAll(c);
172:            }
173:
174:            public boolean retainAll(Collection c) {
175:                // TODO Auto-generated method stub
176:                return super .retainAll(c);
177:            }
178:
179:            public String toString() {
180:                // TODO Auto-generated method stub
181:                return super.toString();
182:            }
183:
184:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.