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

import shapes.FlexibleShape;

@WebDocuments({"Lectures/Oegraphics.pptx", "Lectures/Oegraphics.pdf", "Videos/Oegraphics.avi"})
public interface GraphicsFactorialDisplayer extends FactorialGraphics {
//  public int getX();
//  public void setX(int newVal);
    public FlexibleShape getRectangle();
    public FlexibleShape getTextShape();
    public void computeDependentProperties();
}