add setter for height

This commit is contained in:
Dreyri
2018-01-20 19:32:07 +01:00
parent 13d4c9e636
commit 47e2717a75
2 changed files with 6 additions and 0 deletions

View File

@@ -84,6 +84,8 @@ public interface Widget
int getHeight();
void setHeight(int height);
Rectangle getBounds();
Collection<WidgetItem> getWidgetItems();

View File

@@ -110,6 +110,10 @@ public interface RSWidget extends Widget
@Override
int getHeight();
@Import("height")
@Override
void setHeight(int height);
@Import("isHidden")
boolean isRSHidden();