//********************************************************************
//  Complexity.java       (Lab material from [Lewis & Loftus])
//
//  Represents the interface for an object that can be assigned an
//  explicit complexity.
//********************************************************************

public interface Complexity
{
   public void setComplexity (int complexity);
   public int getComplexity();
}
