widget: expose setchildren (#5309)

This commit is contained in:
Ron Young
2018-10-07 07:20:38 -05:00
committed by Tomas Slusny
parent b469839a84
commit bd8f75cf30
2 changed files with 7 additions and 1 deletions

View File

@@ -124,6 +124,11 @@ public interface Widget
*/
Widget[] getChildren();
/**
* Sets the widget children
*/
void setChildren(Widget[] children);
/**
* Gets all dynamic children.
*

View File

@@ -34,7 +34,8 @@ public interface RSWidget extends Widget
RSWidget[] getChildren();
@Import("children")
void setChildren(RSWidget[] children);
@Override
void setChildren(Widget[] children);
@Import("id")
@Override