KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > btree > NodeEntry


1 /*
2  * NodeEntry.java
3  *
4  * Created on 25 May 2003, 09:36
5  */

6
7 package com.jofti.btree;
8
9 import java.io.Serializable JavaDoc;
10
11
12 /**
13  * The interface for a NodeEntry.<p>
14  *
15  * @author Steve Woodcock
16  * @version 1.3<br>
17  */

18 public interface NodeEntry extends Comparable JavaDoc,Serializable JavaDoc {
19     
20     /**
21      * Returns the value stored in the NodeEntry.
22      * @return
23      */

24     public Comparable JavaDoc getValue();
25     
26     /**
27      * Sets the value in the NodeEntry.
28      * @param value
29      */

30     public void setValue(Comparable JavaDoc value);
31 }
32
Popular Tags