Support SMTP URLs
[zxing.git] / core / src / com / google / zxing / client / result / TelParsedResult.java
1 /*
2  * Copyright 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.result;
18
19 /**
20  * @author Sean Owen
21  */
22 public final class TelParsedResult extends ParsedResult {
23
24   private final String number;
25   private final String telURI;
26   private final String title;
27
28   public TelParsedResult(String number, String telURI, String title) {
29     super(ParsedResultType.TEL);
30     this.number = number;
31     this.telURI = telURI;
32     this.title = title;
33   }
34
35   public String getNumber() {
36     return number;
37   }
38
39   public String getTelURI() {
40     return telURI;
41   }
42
43   public String getTitle() {
44     return title;
45   }
46
47   public String getDisplayResult() {
48     StringBuffer result = new StringBuffer(20);
49     maybeAppend(number, result);
50     maybeAppend(title, result);
51     return result.toString();
52   }
53
54 }