Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7859 views
1
package com.artifex.mupdfdemo;
2
3
import android.graphics.RectF;
4
5
public class SearchTaskResult {
6
public final String txt;
7
public final int pageNumber;
8
public final RectF searchBoxes[];
9
static private SearchTaskResult singleton;
10
11
SearchTaskResult(String _txt, int _pageNumber, RectF _searchBoxes[]) {
12
txt = _txt;
13
pageNumber = _pageNumber;
14
searchBoxes = _searchBoxes;
15
}
16
17
static public SearchTaskResult get() {
18
return singleton;
19
}
20
21
static public void set(SearchTaskResult r) {
22
singleton = r;
23
}
24
}
25
26