Remove some redundant 'throws'; allocate more reasonably sized StringBuffers for...
[zxing.git] / core / src / com / google / zxing / client / result / EmailAddressParsedResult.java
1 /*
2  * Copyright 2007 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 EmailAddressParsedResult extends ParsedResult {
23
24   private final String emailAddress;
25   private final String subject;
26   private final String body;
27   private final String mailtoURI;
28
29   EmailAddressParsedResult(String emailAddress, String subject, String body, String mailtoURI) {
30     super(ParsedResultType.EMAIL_ADDRESS);
31     this.emailAddress = emailAddress;
32     this.subject = subject;
33     this.body = body;
34     this.mailtoURI = mailtoURI;
35   }
36
37   public String getEmailAddress() {
38     return emailAddress;
39   }
40
41   public String getSubject() {
42     return subject;
43   }
44
45   public String getBody() {
46     return body;
47   }
48
49   public String getMailtoURI() {
50     return mailtoURI;
51   }
52
53   public String getDisplayResult() {
54     StringBuffer result = new StringBuffer(30);
55     maybeAppend(emailAddress, result);
56     maybeAppend(subject, result);
57     maybeAppend(body, result);
58     return result.toString();
59   }
60
61 }