KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Created on 27-Jun-2005
3  *
4  */

5 package com.jofti.btree;
6
7 /**
8  *
9  * An interface implemented by LeafNodes to enable an entry retrieval.<p>
10  *
11  * @author Steve Woodcock
12  */

13 public interface Leaf {
14
15     /**
16      * Returns the matching LeafNodeEntry (if any) for the value passed in.<p>
17      *
18      * @param entry <br>
19      * @return a LeafNodeEntry or null if none can be found.
20      */

21     public LeafNodeEntry getEntry(Comparable JavaDoc entry);
22 }
23
Popular Tags