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

@WebDocuments({"Lectures/InheritanceIsAExtra.pptx", "Lectures/InheritanceIsAExtra.pdf", "Videos/InheritanceIsAExtra.avi"})
public interface NotInheritingLine {
    int getX();

    int getY();

    void setX(int newVal);

    void setY(int newVal);

    int getWidth();

    int getHeight();

    void setWidth(int newVal);

    void setHeight(int newVal);
}