Skip to content

Instantly share code, notes, and snippets.

@ziginsider
Created November 16, 2017 18:11
Show Gist options
  • Select an option

  • Save ziginsider/125d1fda79d847f1da5a930251c90c41 to your computer and use it in GitHub Desktop.

Select an option

Save ziginsider/125d1fda79d847f1da5a930251c90c41 to your computer and use it in GitHub Desktop.
public class TextRowType implements RowType {
private String header;
private String text;
public TextRowType(String header, String text) {
this.header = header;
this.text = text;
}
public String getHeader() {
return header;
}
public String getText() {
return text;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment