KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datasystem > interfaces > _IndexKey


1 package com.daffodilwoods.daffodildb.server.datasystem.interfaces;
2
3 import com.daffodilwoods.database.resource.DException;
4
5 public interface _IndexKey {
6    public Object JavaDoc getKey()throws DException;
7    public Object JavaDoc getValue()throws DException;
8
9    void setNodeAndPosition(Object JavaDoc node, int position) throws DException;
10 }
11
Popular Tags