* @param right the right padding
* @param bottom the botton padding
* @throws IllegalStateException this property cannot be changed after the Component has been rendered
*/
public void setPaddings(int top, int left, int right, int bottom) throws IllegalStateException {
Paddings paddings = new Paddings(top, left, right, bottom);
String style = paddings.getStyleString();
String bodyStyle = "";
if (bodyStyle == null) {
setStyle(style);
} else {
setStyle(bodyStyle + style);