blob: 25823342ececa59bfed73d5ce6b273f3db8ae316 [file] [log] [blame]
David Morrisseyc930ef72017-11-02 18:27:22 +00001/*
2Copyright 2017 David Morrissey
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
David Morrissey44e24922017-11-20 10:36:41 +000017package com.davemorrissey.labs.subscaleview.test;
David Morrisseyc930ef72017-11-02 18:27:22 +000018
19public class Page {
20
21 private final int text;
22
23 private final int subtitle;
24
25 public Page(int subtitle, int text) {
26 this.subtitle = subtitle;
27 this.text = text;
28 }
29
30 public int getText() {
31 return text;
32 }
33
34 public int getSubtitle() {
35 return subtitle;
36 }
37}