/**
 * The requirements of Prioritized objects
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public interface Prioritized
{

    /**
     * Return the priority of this Object.
     *
     * @return  The priority
     */
    public abstract int getPriority();
}
