Created
November 16, 2017 18:11
-
-
Save ziginsider/125d1fda79d847f1da5a930251c90c41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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