blob: 903c04f108a4af7773c01b7b57390f60301d3c23 [file] [log] [blame]
David Morrissey44e24922017-11-20 10:36:41 +00001package com.davemorrissey.labs.subscaleview.test;
David Morrisseyc930ef72017-11-02 18:27:22 +00002
3public class Page {
4
5 private final int text;
6
7 private final int subtitle;
8
9 public Page(int subtitle, int text) {
10 this.subtitle = subtitle;
11 this.text = text;
12 }
13
14 public int getText() {
15 return text;
16 }
17
18 public int getSubtitle() {
19 return subtitle;
20 }
21}