CommonAttendee
#include <bb/pim/calendar/CommonAttendee>
To link against this class, add the following line to your .pro file: LIBS += -lbbpim
The CommonAttendee class represents an attendee that is common between the user and a specified person.
You can use the CalendarService::commonAttendees() function to retrieve a list of people that have attended meetings with both the user and a person that you specify. You use the emails attribute of an AnalyticsParams object to identify the person that should have participated in meetings along with the user.
The commonAttendees() function returns a list of CommonAttendee objects. Each CommonAttendee object includes information such as the actual attendee data (represented by an Attendee object) and statistics for the common attendee.
BlackBerry 10.0.0
Public Functions Index
| CommonAttendee () | |
| ~CommonAttendee () | |
| CommonAttendee (const CommonAttendee &other) | |
| CommonAttendee & | operator= (const CommonAttendee &other) |
| Attendee | attendee () const |
| AnalyticsStats | stats () const |
| void | setAttendee (const Attendee &attendee) |
| void | setStats (const AnalyticsStats &stats) |
| bool | isValid () const |
Public Functions
Destructor.
BlackBerry 10.0.0
Copy constructor.
This function constructs a CommonAttendee containing exactly the same values as the provided CommonAttendee.
| Parameters | |
|---|---|
| other |
The CommonAttendee to be copied. |
BlackBerry 10.0.0
CommonAttendee &
Assignment operator.
This operator copies all values from the provided CommonAttendee into this CommonAttendee.
| Parameters | |
|---|---|
| other |
The CommonAttendee from which to copy all values. |
A reference to this CommonAttendee.
BlackBerry 10.0.0
Attendee
Retrieves the Attendee object that's associated with this CommonAttendee.
This function returns an Attendee object that contains the actual attendee data.
The Attendee object that's associated with this CommonAttendee.
BlackBerry 10.0.0
AnalyticsStats
Retrieves statistics for this CommonAttendee.
This function returns an AnalyticsStats object that contains information such as the number of meetings with the user and date of the most recent meeting.
Statistics for this CommonAttendee.
BlackBerry 10.0.0
void
Sets the Attendee object that's associated with this CommonAttendee.
| Parameters | |
|---|---|
| attendee |
The Attendee object to associate. |
BlackBerry 10.0.0
void
Sets the statistics for this CommonAttendee.
| Parameters | |
|---|---|
| stats |
The statistics to set. |
BlackBerry 10.0.0
bool
Indicates whether this CommonAttendee is valid.
This function determines whether the attributes of this CommonAttendee object have acceptable values.
true if this CommonAttendee is valid, false otherwise.
BlackBerry 10.0.0