AComplexOptionalElement.cpp
In This Topic
#include "StdAfx.h"
#pragma warning (push)
#pragma warning (disable:4251)
#pragma warning (disable:4786)
#include "../CardinalityLib.h"
#include "../CardinalityLib/AComplexOptionalElement.h"
namespace CardinalityLib
{
LtXmlLib20Data::CParentElementInfo* CAComplexOptionalElement::ms_pParentElementInfo = NULL;
LtXmlLib20Data::CAttributeInfo** CAComplexOptionalElement::ms_ppAttributeInfo = NULL;
LtXmlLib20Data::CElementInfo** CAComplexOptionalElement::ms_ppElementInfo = NULL;
CAComplexOptionalElementPtr CAComplexOptionalElement::CreateInstance(LPCTSTR lpctElementName)
{
return new CardinalityLib::CAComplexOptionalElement(lpctElementName);
}
CAComplexOptionalElement::CAComplexOptionalElement(LPCTSTR lpctElementName)
: CInstanceMonitor(_T("CAComplexOptionalElement"))
{
m_elementName = lpctElementName;
Init();
}
CAComplexOptionalElement::~CAComplexOptionalElement()
{
Cleanup();
}
void CAComplexOptionalElement::Cleanup()
{
// unregister for any events we have asked for
// cos there'll be no one left to hear soon
}
void CAComplexOptionalElement::OnEvent(LtXmlLib20::CXmlObjectBase* pMsgSource, LtXmlLib20::IEventSink::MsgType eMsgType, void* pData)
{
if (eMsgType == LtXmlLib20::IEventSink::MT_CollectionChangeEvent)
{
}
}
void CAComplexOptionalElement::Init()
{
Cleanup();
this->m_ChildItem = _T("");
}
void CAComplexOptionalElement::AccessProperty(int iPropertyIndex, bool bRead, LtXmlLib20::LtVariant& rValue)
{
if (bRead)
{
switch(iPropertyIndex)
{
case 1:
rValue.SetString(GetChildItem());
break;
default:
throw LtXmlLib20::CLtException(_T("Unknown Property Index"));
};
}
else
{
switch(iPropertyIndex)
{
case 1:
SetChildItem(rValue.GetString());
break;
default:
throw LtXmlLib20::CLtException(_T("Unknown Property Index"));
}
}
}
std::tstring CAComplexOptionalElement::GetChildItem() const
{
return this->m_ChildItem;
}
void CAComplexOptionalElement::SetChildItem(std::tstring value)
{
// Apply whitespace rules appropriately
value = LtXmlLib20::CWhitespaceUtils::Preserve(value);
this->m_ChildItem = value;
}
CardinalityLib::CAComplexOptionalElementPtr CAComplexOptionalElement::Clone() const
{
CardinalityLib::CAComplexOptionalElementPtr newObject = CreateInstance(m_elementName.c_str());
int index = 0;
newObject->m_ChildItem = m_ChildItem;
return newObject.Ptr();
}
std::tstring CAComplexOptionalElement::GetTargetNamespace() const
{
return _T("");
}
std::tstring CAComplexOptionalElement::GetNamespace() const
{
return _T("");
}
LtXmlLib20::CXmlObjectBase* CAComplexOptionalElement::GetBase()
{
return this;
}
void CAComplexOptionalElement::CleanMetaData()
{
LtXmlLib20::CXmlGeneratedClass::CleanMetaData(ms_pParentElementInfo, ms_ppElementInfo, ms_ppAttributeInfo);
}
LtXmlLib20Data::CParentElementInfo* CAComplexOptionalElement::GetClassInfo() const
{
if (ms_pParentElementInfo == NULL)
{
m_csInit.Enter();
if (ms_pParentElementInfo == NULL)
{
ms_pParentElementInfo = new LtXmlLib20Data::CParentElementInfo(
LtXmlLib20Data::XmlElementGroupType_SEQUENCE,
LtXmlLib20Data::XmlElementType_ELEMENT,
_T("AComplexOptionalElement"),
_T(""),
true,
false,
-1,
LtXmlLib20::ItemType_none,
LtXmlLib20::CWhitespaceUtils::WhitespaceRule_None,
NULL,
false);
}
m_csInit.Leave();
}
return ms_pParentElementInfo;
}
LtXmlLib20Data::CElementInfo** CAComplexOptionalElement::GetClassElementInfo() const
{
if (ms_ppElementInfo == NULL)
{
m_csInit.Enter();
if (ms_ppElementInfo == NULL)
{
ms_ppElementInfo = new LtXmlLib20Data::CElementInfo*[2];
ms_ppElementInfo[0] = new LtXmlLib20Data::CElementInfoSeqPrimMnd(_T("ChildItem"), _T(""), 1, false, LtXmlLib20::ItemType_string, NULL, LtXmlLib20::CWhitespaceUtils::WhitespaceRule_Preserve, LtXmlLib20::CPrimitiveRestrictions(_T(""), -1, -1, _T(""), _T(""), _T(""), _T(""), -1, -1, -1), NULL);
ms_ppElementInfo[1] = NULL;
}
m_csInit.Leave();
}
return ms_ppElementInfo;
}
LtXmlLib20Data::CAttributeInfo** CAComplexOptionalElement::GetClassAttributeInfo() const
{
if (ms_ppAttributeInfo == NULL)
{
m_csInit.Enter();
if (ms_ppAttributeInfo == NULL)
{
ms_ppAttributeInfo = new LtXmlLib20Data::CAttributeInfo*[1];
ms_ppAttributeInfo[0] = NULL;
}
m_csInit.Leave();
}
return ms_ppAttributeInfo;
}
};