Added small android-integration module
[zxing.git] / android-integration / src / com / google / zxing / integration / android / IntentResult.java
1 /*
2  * Copyright 2009 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.integration.android;
18
19 /**
20  * <p>Encapsulates the result of a barcode scan invoked through {@link IntentIntegrator}.</p>
21  *
22  * @author Sean Owen
23  */
24 public final class IntentResult {
25
26   private final String contents;
27   private final String formatName;
28
29   IntentResult(String contents, String formatName) {
30     this.contents = contents;
31     this.formatName = formatName;
32   }
33
34   /**
35    * @return raw content of barcode
36    */
37   public String getContents() {
38     return contents;
39   }
40
41   /**
42    * @return name of format, like "QR_CODE", "UPC_A". See <code>BarcodeFormat</code> for more format names.
43    */
44   public String getFormatName() {
45     return formatName;
46   }
47
48 }