19d18 < import java.util.Vector; 76,77c75 < super(newDrawingEditor); < fPrototype = null; --- > this(newDrawingEditor, null); 113a112 > if (getAddedFigure() != null) { 115a115 > } 122a123 > if (getAddedFigure() != null) { 135d135 < fCreatedFigure = null; 136a137,138 > } > fCreatedFigure = null; 147c149,152 < private void setCreatedFigure(Figure newCreatedFigure) { --- > /** > * Sets the createdFigure attribute of the CreationTool object > */ > protected void setCreatedFigure(Figure newCreatedFigure) { 159c164,167 < private void setAddedFigure(Figure newAddedFigure) { --- > /** > * Sets the addedFigure attribute of the CreationTool object > */ > protected void setAddedFigure(Figure newAddedFigure) { 179a188,197 > > > /** > * Sets the anchorPoint attribute of the CreationTool object > * > * @param newAnchorPoint The new anchorPoint value > */ > protected void setAnchorPoint(Point newAnchorPoint) { > fAnchorPoint = newAnchorPoint; > }