package lectures.inheritance;
import util.annotations.WebDocuments;


@WebDocuments({"Lectures/Inheritance.pptx", "Lectures/Inheritance.pdf", "Videos/Inheritance.avi"})
public interface BoundedPoint extends MutablePoint {
    public MutablePoint getUpperLeftCorner();
    public MutablePoint getLowerRightCorner();
    public void setUpperLeftCorner(MutablePoint newVal);
    public void setLowerRightCorner(MutablePoint newVal);   
}