Location:
VCARD.H
Link against: vcard.lib
class CParserGroupedProperty : public CParserProperty;
A grouped property.
This is a vCard property which may be a member of one or more property groups. It owns an array of descriptors, each of which identifies a group to which the property belongs.
An example of how grouped properties may be useful is for a person with two homes. Each home has an address and telephone number, both of which are to be stored on the vCard. The address and telephone number are grouped for each home. A prefix for the address and telephone number properties is provided: one for each home. Each prefix is stored as a property group.
When the property is externalised, the identities of all the groups to which the property belongs (i.e. the prefixes) are
written to the stream before CParserProperty::ExternalizeL()
is called.
The class also provides a function which can be used to test whether the property is a member of a given group.
Note that the vCard parser stores all properties using this class; if the vCard property is not grouped then the array of
property groups is empty. Conversely, the vCalender parser does not have property groups, and so stores all properties using
the CParserProperty
base class.
CBase
- Base class for all classes to be instantiated on the heap
CParserProperty
- A vCard or vCalendar property
CParserGroupedProperty
- A grouped property
Defined in CParserGroupedProperty
:
CParserGroupedProperty()
, ExternalizeL()
, Group()
, Groups()
, NewL()
, Reserved()
, SetGroups()
, SupportsInterface()
, iArrayOfGroups
, ~CParserGroupedProperty()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Inherited from CParserProperty
:
AddParamL()
,
ConstructSelfL()
,
DeleteParam()
,
LoadBinaryValuesFromFilesL()
,
Name()
,
NameUid()
,
Param()
,
ParamArray()
,
SaveBinaryValuesToFilesL()
,
SetNameL()
,
SetNameUid()
,
SetParamArray()
,
SetValue()
,
Uid()
,
Value()
,
iArrayOfParams
,
iPropertyName
,
iPropertyNameUid
,
iPropertyValue
static IMPORT_C CParserGroupedProperty *NewL(CParserPropertyValue &aPropertyValue, const TDesC8 &aName, CDesC8Array *aArrayOfGroups,
CArrayPtr< CParserParam > *aArrayOfParams);
Allocates and constructs a new grouped property from the value, name, property parameters and groups specified.
Note: the property value, name and array of property parameters are generic to all properties. The array of grouped property names is specific to the CParserGroupedProperty class.
|
|
IMPORT_C CParserGroupedProperty(CDesC8Array *aArrayOfGroups, CArrayPtr< CParserParam > *aArrayOfParams);
Allocates and partially constructs a new grouped property using the array of grouped property names and array of property parameters specified.
|
IMPORT_C ~CParserGroupedProperty();
Frees all resources owned by the property, prior to its destruction.
IMPORT_C TBool Group(const TDesC8 &aGroup) const;
Tests whether the property is a member of the specified property group.
|
|
inline void SetGroups(CDesC8Array *aArrayOfGroups);
Sets the list of groups to which the property belongs, replacing any existing list.
|
inline const CDesC8Array *Groups();
Gets the groups to which the property belongs.
|
virtual IMPORT_C TBool SupportsInterface(const TUid &aInterfaceUid) const;
Tests whether the property supports the given interface.
Returns true if the given interface UID is KVersitGroupedPropertyUid.
|
|
virtual IMPORT_C void ExternalizeL(RWriteStream &aStream, CVersitParser *aVersitParser=0);
Externalises the property into aStream.
Externalises the list of groups to which the property belongs, if there are any, then calls CParserProperty::ExternalizeL()
to write the rest of the property data to the stream.
|
protected: CDesC8Array * iArrayOfGroups;