Minor changes from code inspection results
[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
26   private static String query;
27
28   private final String pageId;
29   private final String pageNumber;
30   private final String snippet;
31   private final boolean validSnippet;
32
33     SearchBookContentsResult(String pageId,
34                              String pageNumber,
35                              String snippet,
36                              boolean validSnippet) {
37     this.pageId = pageId;
38     this.pageNumber = pageNumber;
39     this.snippet = snippet;
40     this.validSnippet = validSnippet;
41   }
42
43   public static void setQuery(String query) {
44     SearchBookContentsResult.query = query;
45   }
46
47   public String getPageId() {
48     return pageId;
49   }
50
51   public String getPageNumber() {
52     return pageNumber;
53   }
54
55   public String getSnippet() {
56     return snippet;
57   }
58
59   public boolean getValidSnippet() {
60     return validSnippet;
61   }
62
63   public static String getQuery() {
64     return query;
65   }
66 }