This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
moviegraph/KeyedItem.java

21 lines
335 B
Java

//given to me from mark boshart
public abstract class KeyedItem
{
private Comparable searchKey;
public KeyedItem(Comparable key)
{
searchKey = key;
} // end constructor
public Comparable getKey()
{
return searchKey;
} // end getKey
public String toString()
{
return searchKey.toString();
}
}