KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > xml > cli > ResourceIteratorImpl


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: ResourceIteratorImpl.java,v 1.1 2003/11/02 17:26:14 per_nyfelt Exp $
8

9 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, "hasMoreResources(): Not yet implemented");
30     }
31
32     /**
33     */

34     public Resource nextResource() throws XMLDBException {
35         throw new XMLDBException( ErrorCodes.VENDOR_ERROR, "nextResource(): Not yet implemented");
36     }
37
38 }
39
Popular Tags