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

import lectures.inheritance.extra.MutablePoint;

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