1package com.davemorrissey.labs.subscaleview.test;
2
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}
22