/**
 * Define what it is to be prioritized
 *
 * @version 1.0
 * @author  David Bernstein, James Madison University
 */
public interface Prioritized
{

    /**
     * Return the priority of this Object
     */
    public int getPriority();

}
