* @param width the new width
* @param height the new height
*/
public void setBounds(int x, int y, int width, int height) {
if (!isAttached()) {
attachBounds = new Rectangle(x, y, width, height);
return;
}
MyDOM.setBounds(elem, x, y, width, height, true);