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: ResourceIteratorImpl.java,v 1.1 2001/12/18 11:03:24 per_nyfelt Exp $
08:
09: package org.ozoneDB.xml.cli;
10:
11: import org.xmldb.api.base.ErrorCodes;
12: import org.xmldb.api.base.Resource;
13: import org.xmldb.api.base.ResourceIterator;
14: import org.xmldb.api.base.XMLDBException;
15:
16: /**
17: *
18: * @author <a href="http://www.smb-tec.com">SMB</a>
19: * @version $Revision: 1.1 $
20: */
21: public class ResourceIteratorImpl implements ResourceIterator {
22:
23: public ResourceIteratorImpl() {
24: }
25:
26: /**
27: */
28: public boolean hasMoreResources() throws XMLDBException {
29: throw new XMLDBException(ErrorCodes.VENDOR_ERROR,
30: "hasMoreResources(): Not yet implemented");
31: }
32:
33: /**
34: */
35: public Resource nextResource() throws XMLDBException {
36: throw new XMLDBException(ErrorCodes.VENDOR_ERROR,
37: "nextResource(): Not yet implemented");
38: }
39:
40: }
|