newElement.height = 20;
return addElement(newElement);
}
public StyleBuilder addImage(ScreenLocation screenLocation, BufferedImage image){
ImageElement newElement = new ImageElement();
newElement.x = screenLocation.getX();
newElement.y = screenLocation.getY();
newElement.image = image;
return addElement(newElement);
}