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: }
|