gshute.util
Interface Table.Entry

Enclosing class:
Table

public static interface Table.Entry

A Table.Entry is an entry in a table. It has two attributes: its key and its data.


Method Summary
 java.lang.Object getData()
          e.getData() returns the data for e.
 java.lang.Object getKey()
          e.getKey() returns the key for e.
 

Method Detail

getKey

public java.lang.Object getKey()
e.getKey() returns the key for e.

getData

public java.lang.Object getData()
e.getData() returns the data for e.