add setter for textColor

This commit is contained in:
Dreyri
2018-01-20 19:29:16 +01:00
parent 72ed7897d8
commit 73d5caef2a
2 changed files with 6 additions and 0 deletions

View File

@@ -62,6 +62,8 @@ public interface Widget
int getTextColor();
void setTextColor(int textColor);
String getName();
int getModelId();

View File

@@ -75,6 +75,10 @@ public interface RSWidget extends Widget
@Override
int getTextColor();
@Import("textColor")
@Override
void setTextColor(int textColor);
@Import("opacity")
int getOpacity();