Skip to content

Commit

Permalink
Added configuration API for view
Browse files Browse the repository at this point in the history
  • Loading branch information
samie committed Jul 27, 2023
1 parent 151d1a3 commit ca2269e
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,21 @@ public void setProductName(String productName) {
this.productName = productName;
}

public String getHeader() {
return this.header.getText();
}

public void setHeader(String header) {
this.header.setText(header);
}

public String getQuestion() {
return this.nps.getTitle();
}

public void setQuestion(String title) {
this.nps.setTitle(title);
}


}

0 comments on commit ca2269e

Please sign in to comment.