(float x, float y, float width, float height)
| 87 | } |
| 88 | |
| 89 | @Override |
| 90 | public void setBounds(float x, float y, float width, float height) { |
| 91 | super.setBounds(x, y, width, height); |
| 92 | doLayout(width, height); //always re-do layout when setBounds used |
| 93 | } |
| 94 | |
| 95 | @Override |
| 96 | public void setSize(float width, float height) { |
no test coverage detected