Home | History | Annotate | Download | only in widget

Lines Matching defs:EventInfo

45      * {@link EventInfo} instance, since a row in the widget might be either a
71 * {@link EventInfo} is a class that represents an event in the widget. It
75 static class EventInfo {
90 public EventInfo() {
99 builder.append("EventInfo [visibTitle=");
148 EventInfo other = (EventInfo) obj;
244 final List<EventInfo> mEventInfos;
257 mEventInfos = new ArrayList<EventInfo>(50);
354 private EventInfo populateEventInfo(long eventId, boolean allDay, long start, long end,
356 EventInfo eventInfo = new EventInfo();
380 eventInfo.id = eventId;
381 eventInfo.start = start;
382 eventInfo.end = end;
383 eventInfo.allDay = allDay;
384 eventInfo.when = whenString.toString();
385 eventInfo.visibWhen = visibWhen;
386 eventInfo.color = color;
387 eventInfo.selfAttendeeStatus = selfStatus;
391 eventInfo.title = mContext.getString(R.string.no_title_label);
393 eventInfo.title = title;
395 eventInfo.visibTitle = View.VISIBLE;
399 eventInfo.visibWhere = View.VISIBLE;
400 eventInfo.where = location;
402 eventInfo.visibWhere = View.GONE;
404 return eventInfo;