Add history feature; group some functionality into subpackages
[zxing.git] / android / src / com / google / zxing / client / android / book / SearchBookContentsResult.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android.book;
18
19 /**
20  * The underlying data for a SBC result.
21  *
22  * @author dswitkin@google.com (Daniel Switkin)
23  */
24 final class SearchBookContentsResult {
25   private static String query;
26
27   private final String pageNumber;
28   private final String snippet;
29   private final boolean validSnippet;
30
31   SearchBookContentsResult(String pageNumber, String snippet, boolean validSnippet) {
32     this.pageNumber = pageNumber;
33     this.snippet = snippet;
34     this.validSnippet = validSnippet;
35   }
36
37   public static void setQuery(String query) {
38     SearchBookContentsResult.query = query;
39   }
40
41   public String getPageNumber() {
42     return pageNumber;
43   }
44
45   public String getSnippet() {
46     return snippet;
47   }
48
49   public boolean getValidSnippet() {
50     return validSnippet;
51   }
52
53   public static String getQuery() {
54     return query;
55   }
56 }