// DrawShapes Example // Source Code File: Shape.java package it372.jost.drawshapes; public class Shape { public String shapeCode; public int xStart; public int yStart; public int xEnd; public int yEnd; public String colorCode; public Shape(String shapeCode, int xStart, int yStart, int xEnd, int yEnd, String colorCode) { this.shapeCode = shapeCode; this.xStart = xStart; this.yStart = yStart; this.xEnd = xEnd; this.yEnd = yEnd; this.colorCode = colorCode; } public String getShapeCode() { return shapeCode; } public int getXStart() { return xStart; } public int getYStart() { return yStart; } public int getXEnd() { return xEnd; } public int getYEnd() { return yEnd; } public String getColorCode() { return colorCode; } }