| FancyCartesianPlane.java |
package lectures.composite.objects_shapes;
import util.annotations.WebDocuments;
import lectures.graphics.StringShape;
@WebDocuments({"Lectures/CompositeObjectsShapes.pptx", "Lectures/CompositeObjectsShapes.pdf", "Videos/CompositeObjectsShapes.avi"})
public interface FancyCartesianPlane {
public int getAxesLength();
public void setAxesLength(int newVal);
public StringShape getXLabel();
public StringShape getYLabel();
public CartesianPlane getCartesianPlane();
}