Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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