(int position, int row, Element e)
| 310 | } |
| 311 | |
| 312 | @Override |
| 313 | public UIWindow setElement(int position, int row, Element e) { |
| 314 | if (row > highestRow) { |
| 315 | highestRow = row; |
| 316 | } |
| 317 | |
| 318 | elements.put(getRealPosition((int) clip(position, -getResolution().getMaxWidthOffset(), getResolution().getMaxWidthOffset()).doubleValue(), row), e); |
| 319 | updateInventory(); |
| 320 | return this; |
| 321 | } |
| 322 | |
| 323 | @Override |
| 324 | public Element getElement(int position, int row) { |
no test coverage detected