aboutsummaryrefslogtreecommitdiff
path: root/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/Page.java
blob: 903c04f108a4af7773c01b7b57390f60301d3c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.davemorrissey.labs.subscaleview.test;

public class Page {

    private final int text;

    private final int subtitle;

    public Page(int subtitle, int text) {
        this.subtitle = subtitle;
        this.text = text;
    }

    public int getText() {
        return text;
    }

    public int getSubtitle() {
        return subtitle;
    }
}