TDAT: public void setDecorationBounds(int x, int y, int w, int h) { | |
if (this.bounds == null) { | |
this.bounds = new Rectangle(x, y, w, h); | |
} else { | |
this.bounds.setBounds(x, y, w, h); | |
} | |
synch(); | |
} | |
COM: <s> change the current decorated bounds </s> | |