gshute.util
Interface Table.Entry


public abstract 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.