01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: OzoneODMGDList.java,v 1.1 2002/05/08 15:03:21 per_nyfelt Exp $
08:
09: package org.ozoneDB.odmg;
10:
11: import org.odmg.*; //import org.ozoneDB.*;
12: import java.util.*;
13:
14: /**
15: * @author <a href="http://www.softwarebuero.de/">SMB</a>
16: * @version $Revision: 1.1 $Date: 2002/05/08 15:03:21 $
17: */
18: public class OzoneODMGDList extends ArrayList implements DList {
19:
20: public OzoneODMGDList() {
21: super ();
22: }
23:
24: public OzoneODMGDList(Collection _collection) {
25: super (_collection);
26: }
27:
28: public DList concat(DList otherList) {
29: DList result = new OzoneODMGDList(this );
30: result.addAll(otherList);
31: return result;
32: }
33:
34: /**
35: * NOT SUPPORTED!
36: */
37: public Object selectElement(String predicate)
38: throws QueryInvalidException {
39: throw new NotImplementedException("OQL not supported");
40: }
41:
42: /**
43: * NOT SUPPORTED!
44: */
45: public java.util.Iterator select(String predicate)
46: throws QueryInvalidException {
47: throw new NotImplementedException("OQL not supported");
48: }
49:
50: /**
51: * NOT SUPPORTED!
52: */
53: public DCollection query(String predicate)
54: throws QueryInvalidException {
55: throw new NotImplementedException("OQL not supported");
56: }
57:
58: /**
59: * NOT SUPPORTED!
60: */
61: public boolean existsElement(String predicate)
62: throws QueryInvalidException {
63: throw new NotImplementedException("OQL not supported");
64: }
65:
66: }
|