(int x, int y, int w, int h)
| 33 | } |
| 34 | |
| 35 | public void setBounds(int x, int y, int w, int h) { |
| 36 | this.x = x; |
| 37 | this.y = y; |
| 38 | this.width = w; |
| 39 | this.height = h; |
| 40 | } |
| 41 | |
| 42 | public void translate(int x, int y) { |
| 43 | this.x += x; |
no outgoing calls
no test coverage detected