c6f54646493d08ddabb9a24b1b0bbfb778cdb496
[zxing.git] / core / src / com / google / zxing / client / result / CalendarParsedResult.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 srowen@google.com (Sean Owen)
21  */
22 public final class CalendarParsedResult extends ParsedResult {
23
24   private final String summary;
25   private final String start;
26   private final String end;
27   private final String location;
28   private final String attendee;
29   private final String title;
30
31   public CalendarParsedResult(String summary,
32                               String start,
33                               String end,
34                               String location,
35                               String attendee,
36                               String title) {
37     super(ParsedResultType.CALENDAR);
38     this.summary = summary;
39     this.start = start;
40     this.end = end;
41     this.location = location;
42     this.attendee = attendee;
43     this.title = title;
44   }
45
46   public String getSummary() {
47     return summary;
48   }
49
50   /**
51    * <p>We would return the start and end date as a {@link java.util.Date} except that this code
52    * needs to work under JavaME / MIDP and there is no date parsing library available there, such
53    * as <code>java.text.SimpleDateFormat</code>.</p>
54    *
55    * <p>Instead this is a String formatted as YYYYMMdd'T'HHmmss'Z'.</p>
56    */
57   public String getStart() {
58     return start;
59   }
60
61   /**
62    * @see #getStart()
63    */
64   public String getEnd() {
65     return end;
66   }
67
68   public String getLocation() {
69     return location;
70   }
71
72   public String getAttendee() {
73     return attendee;
74   }
75
76   public String getTitle() {
77     return title;
78   }
79
80   public String getDisplayResult() {
81     StringBuffer result = new StringBuffer(summary);
82     maybeAppend(start, result);
83     maybeAppend(end, result);
84     maybeAppend(location, result);
85     maybeAppend(attendee, result);
86     maybeAppend(title, result);
87     return result.toString();
88   }
89
90 }