Massimiliano Assante 2015-07-02 14:40:52 +00:00
parent 47052047a6
commit 29d1d476c4
1 changed files with 8 additions and 1 deletions

View File

@ -30,5 +30,12 @@ public class InviteWidget extends Composite{
initWidget(uiBinder.createAndBindUi(this));
new FormErrorsValidation().start(validationErrorsFormPanel, null);
}
/**
* if you want to add an header text use this constructor
* @param headerText
*/
public InviteWidget(String headerText) {
this();
header.setText(headerText);
}
}