diff --git a/samples/client/petstore/tizen/client/SamiCategory.cpp b/samples/client/petstore/tizen/client/SamiCategory.cpp index def45c65788..185b1f9d895 100644 --- a/samples/client/petstore/tizen/client/SamiCategory.cpp +++ b/samples/client/petstore/tizen/client/SamiCategory.cpp @@ -148,31 +148,31 @@ SamiCategory::asJsonObject() { JsonString *pIdKey = new JsonString(L"id"); - pJsonObject->Add(pIdKey, toJson(getpId(), "Long", "")); + pJsonObject->Add(pIdKey, toJson(getPId(), "Long", "")); JsonString *pNameKey = new JsonString(L"name"); - pJsonObject->Add(pNameKey, toJson(getpName(), "String", "")); + pJsonObject->Add(pNameKey, toJson(getPName(), "String", "")); return pJsonObject; } Long* -SamiCategory::getpId() { +SamiCategory::getPId() { return pId; } void -SamiCategory::setpId(Long* pId) { +SamiCategory::setPId(Long* pId) { this->pId = pId; } String* -SamiCategory::getpName() { +SamiCategory::getPName() { return pName; } void -SamiCategory::setpName(String* pName) { +SamiCategory::setPName(String* pName) { this->pName = pName; } diff --git a/samples/client/petstore/tizen/client/SamiCategory.h b/samples/client/petstore/tizen/client/SamiCategory.h index 17fb5370943..a361ea047fa 100644 --- a/samples/client/petstore/tizen/client/SamiCategory.h +++ b/samples/client/petstore/tizen/client/SamiCategory.h @@ -42,11 +42,11 @@ public: SamiCategory* fromJson(String* obj); - Long* getpId(); - void setpId(Long* pId); + Long* getPId(); + void setPId(Long* pId); - String* getpName(); - void setpName(String* pName); + String* getPName(); + void setPName(String* pName); private: diff --git a/samples/client/petstore/tizen/client/SamiOrder.cpp b/samples/client/petstore/tizen/client/SamiOrder.cpp index b029b2aeefe..a319e88e616 100644 --- a/samples/client/petstore/tizen/client/SamiOrder.cpp +++ b/samples/client/petstore/tizen/client/SamiOrder.cpp @@ -208,83 +208,83 @@ SamiOrder::asJsonObject() { JsonString *pIdKey = new JsonString(L"id"); - pJsonObject->Add(pIdKey, toJson(getpId(), "Long", "")); + pJsonObject->Add(pIdKey, toJson(getPId(), "Long", "")); JsonString *pPetIdKey = new JsonString(L"petId"); - pJsonObject->Add(pPetIdKey, toJson(getpPetId(), "Long", "")); + pJsonObject->Add(pPetIdKey, toJson(getPPetId(), "Long", "")); JsonString *pQuantityKey = new JsonString(L"quantity"); - pJsonObject->Add(pQuantityKey, toJson(getpQuantity(), "Integer", "")); + pJsonObject->Add(pQuantityKey, toJson(getPQuantity(), "Integer", "")); JsonString *pShipDateKey = new JsonString(L"shipDate"); - pJsonObject->Add(pShipDateKey, toJson(getpShipDate(), "DateTime", "")); + pJsonObject->Add(pShipDateKey, toJson(getPShipDate(), "DateTime", "")); JsonString *pStatusKey = new JsonString(L"status"); - pJsonObject->Add(pStatusKey, toJson(getpStatus(), "String", "")); + pJsonObject->Add(pStatusKey, toJson(getPStatus(), "String", "")); JsonString *pCompleteKey = new JsonString(L"complete"); - pJsonObject->Add(pCompleteKey, toJson(getpComplete(), "Boolean", "")); + pJsonObject->Add(pCompleteKey, toJson(getPComplete(), "Boolean", "")); return pJsonObject; } Long* -SamiOrder::getpId() { +SamiOrder::getPId() { return pId; } void -SamiOrder::setpId(Long* pId) { +SamiOrder::setPId(Long* pId) { this->pId = pId; } Long* -SamiOrder::getpPetId() { +SamiOrder::getPPetId() { return pPetId; } void -SamiOrder::setpPetId(Long* pPetId) { +SamiOrder::setPPetId(Long* pPetId) { this->pPetId = pPetId; } Integer* -SamiOrder::getpQuantity() { +SamiOrder::getPQuantity() { return pQuantity; } void -SamiOrder::setpQuantity(Integer* pQuantity) { +SamiOrder::setPQuantity(Integer* pQuantity) { this->pQuantity = pQuantity; } DateTime* -SamiOrder::getpShipDate() { +SamiOrder::getPShipDate() { return pShipDate; } void -SamiOrder::setpShipDate(DateTime* pShipDate) { +SamiOrder::setPShipDate(DateTime* pShipDate) { this->pShipDate = pShipDate; } String* -SamiOrder::getpStatus() { +SamiOrder::getPStatus() { return pStatus; } void -SamiOrder::setpStatus(String* pStatus) { +SamiOrder::setPStatus(String* pStatus) { this->pStatus = pStatus; } Boolean* -SamiOrder::getpComplete() { +SamiOrder::getPComplete() { return pComplete; } void -SamiOrder::setpComplete(Boolean* pComplete) { +SamiOrder::setPComplete(Boolean* pComplete) { this->pComplete = pComplete; } diff --git a/samples/client/petstore/tizen/client/SamiOrder.h b/samples/client/petstore/tizen/client/SamiOrder.h index bc1cf4af226..08b79cc195c 100644 --- a/samples/client/petstore/tizen/client/SamiOrder.h +++ b/samples/client/petstore/tizen/client/SamiOrder.h @@ -45,23 +45,23 @@ public: SamiOrder* fromJson(String* obj); - Long* getpId(); - void setpId(Long* pId); + Long* getPId(); + void setPId(Long* pId); - Long* getpPetId(); - void setpPetId(Long* pPetId); + Long* getPPetId(); + void setPPetId(Long* pPetId); - Integer* getpQuantity(); - void setpQuantity(Integer* pQuantity); + Integer* getPQuantity(); + void setPQuantity(Integer* pQuantity); - DateTime* getpShipDate(); - void setpShipDate(DateTime* pShipDate); + DateTime* getPShipDate(); + void setPShipDate(DateTime* pShipDate); - String* getpStatus(); - void setpStatus(String* pStatus); + String* getPStatus(); + void setPStatus(String* pStatus); - Boolean* getpComplete(); - void setpComplete(Boolean* pComplete); + Boolean* getPComplete(); + void setPComplete(Boolean* pComplete); private: diff --git a/samples/client/petstore/tizen/client/SamiPet.cpp b/samples/client/petstore/tizen/client/SamiPet.cpp index 6c5d101db43..ecf63f060a4 100644 --- a/samples/client/petstore/tizen/client/SamiPet.cpp +++ b/samples/client/petstore/tizen/client/SamiPet.cpp @@ -208,83 +208,83 @@ SamiPet::asJsonObject() { JsonString *pIdKey = new JsonString(L"id"); - pJsonObject->Add(pIdKey, toJson(getpId(), "Long", "")); + pJsonObject->Add(pIdKey, toJson(getPId(), "Long", "")); JsonString *pCategoryKey = new JsonString(L"category"); - pJsonObject->Add(pCategoryKey, toJson(getpCategory(), "SamiCategory", "")); + pJsonObject->Add(pCategoryKey, toJson(getPCategory(), "SamiCategory", "")); JsonString *pNameKey = new JsonString(L"name"); - pJsonObject->Add(pNameKey, toJson(getpName(), "String", "")); + pJsonObject->Add(pNameKey, toJson(getPName(), "String", "")); JsonString *pPhotoUrlsKey = new JsonString(L"photoUrls"); - pJsonObject->Add(pPhotoUrlsKey, toJson(getpPhotoUrls(), "String", "array")); + pJsonObject->Add(pPhotoUrlsKey, toJson(getPPhotoUrls(), "String", "array")); JsonString *pTagsKey = new JsonString(L"tags"); - pJsonObject->Add(pTagsKey, toJson(getpTags(), "SamiTag", "array")); + pJsonObject->Add(pTagsKey, toJson(getPTags(), "SamiTag", "array")); JsonString *pStatusKey = new JsonString(L"status"); - pJsonObject->Add(pStatusKey, toJson(getpStatus(), "String", "")); + pJsonObject->Add(pStatusKey, toJson(getPStatus(), "String", "")); return pJsonObject; } Long* -SamiPet::getpId() { +SamiPet::getPId() { return pId; } void -SamiPet::setpId(Long* pId) { +SamiPet::setPId(Long* pId) { this->pId = pId; } SamiCategory* -SamiPet::getpCategory() { +SamiPet::getPCategory() { return pCategory; } void -SamiPet::setpCategory(SamiCategory* pCategory) { +SamiPet::setPCategory(SamiCategory* pCategory) { this->pCategory = pCategory; } String* -SamiPet::getpName() { +SamiPet::getPName() { return pName; } void -SamiPet::setpName(String* pName) { +SamiPet::setPName(String* pName) { this->pName = pName; } IList* -SamiPet::getpPhotoUrls() { +SamiPet::getPPhotoUrls() { return pPhotoUrls; } void -SamiPet::setpPhotoUrls(IList* pPhotoUrls) { +SamiPet::setPPhotoUrls(IList* pPhotoUrls) { this->pPhotoUrls = pPhotoUrls; } IList* -SamiPet::getpTags() { +SamiPet::getPTags() { return pTags; } void -SamiPet::setpTags(IList* pTags) { +SamiPet::setPTags(IList* pTags) { this->pTags = pTags; } String* -SamiPet::getpStatus() { +SamiPet::getPStatus() { return pStatus; } void -SamiPet::setpStatus(String* pStatus) { +SamiPet::setPStatus(String* pStatus) { this->pStatus = pStatus; } diff --git a/samples/client/petstore/tizen/client/SamiPet.h b/samples/client/petstore/tizen/client/SamiPet.h index 30ae8872949..a1658248436 100644 --- a/samples/client/petstore/tizen/client/SamiPet.h +++ b/samples/client/petstore/tizen/client/SamiPet.h @@ -45,23 +45,23 @@ public: SamiPet* fromJson(String* obj); - Long* getpId(); - void setpId(Long* pId); + Long* getPId(); + void setPId(Long* pId); - SamiCategory* getpCategory(); - void setpCategory(SamiCategory* pCategory); + SamiCategory* getPCategory(); + void setPCategory(SamiCategory* pCategory); - String* getpName(); - void setpName(String* pName); + String* getPName(); + void setPName(String* pName); - IList* getpPhotoUrls(); - void setpPhotoUrls(IList* pPhotoUrls); + IList* getPPhotoUrls(); + void setPPhotoUrls(IList* pPhotoUrls); - IList* getpTags(); - void setpTags(IList* pTags); + IList* getPTags(); + void setPTags(IList* pTags); - String* getpStatus(); - void setpStatus(String* pStatus); + String* getPStatus(); + void setPStatus(String* pStatus); private: diff --git a/samples/client/petstore/tizen/client/SamiTag.cpp b/samples/client/petstore/tizen/client/SamiTag.cpp index 3e6b947c604..d07b64a531d 100644 --- a/samples/client/petstore/tizen/client/SamiTag.cpp +++ b/samples/client/petstore/tizen/client/SamiTag.cpp @@ -148,31 +148,31 @@ SamiTag::asJsonObject() { JsonString *pIdKey = new JsonString(L"id"); - pJsonObject->Add(pIdKey, toJson(getpId(), "Long", "")); + pJsonObject->Add(pIdKey, toJson(getPId(), "Long", "")); JsonString *pNameKey = new JsonString(L"name"); - pJsonObject->Add(pNameKey, toJson(getpName(), "String", "")); + pJsonObject->Add(pNameKey, toJson(getPName(), "String", "")); return pJsonObject; } Long* -SamiTag::getpId() { +SamiTag::getPId() { return pId; } void -SamiTag::setpId(Long* pId) { +SamiTag::setPId(Long* pId) { this->pId = pId; } String* -SamiTag::getpName() { +SamiTag::getPName() { return pName; } void -SamiTag::setpName(String* pName) { +SamiTag::setPName(String* pName) { this->pName = pName; } diff --git a/samples/client/petstore/tizen/client/SamiTag.h b/samples/client/petstore/tizen/client/SamiTag.h index af77f48ec48..6521b0a6bed 100644 --- a/samples/client/petstore/tizen/client/SamiTag.h +++ b/samples/client/petstore/tizen/client/SamiTag.h @@ -42,11 +42,11 @@ public: SamiTag* fromJson(String* obj); - Long* getpId(); - void setpId(Long* pId); + Long* getPId(); + void setPId(Long* pId); - String* getpName(); - void setpName(String* pName); + String* getPName(); + void setPName(String* pName); private: diff --git a/samples/client/petstore/tizen/client/SamiUser.cpp b/samples/client/petstore/tizen/client/SamiUser.cpp index 48c615e008d..916bec83d5a 100644 --- a/samples/client/petstore/tizen/client/SamiUser.cpp +++ b/samples/client/petstore/tizen/client/SamiUser.cpp @@ -238,109 +238,109 @@ SamiUser::asJsonObject() { JsonString *pIdKey = new JsonString(L"id"); - pJsonObject->Add(pIdKey, toJson(getpId(), "Long", "")); + pJsonObject->Add(pIdKey, toJson(getPId(), "Long", "")); JsonString *pUsernameKey = new JsonString(L"username"); - pJsonObject->Add(pUsernameKey, toJson(getpUsername(), "String", "")); + pJsonObject->Add(pUsernameKey, toJson(getPUsername(), "String", "")); JsonString *pFirstNameKey = new JsonString(L"firstName"); - pJsonObject->Add(pFirstNameKey, toJson(getpFirstName(), "String", "")); + pJsonObject->Add(pFirstNameKey, toJson(getPFirstName(), "String", "")); JsonString *pLastNameKey = new JsonString(L"lastName"); - pJsonObject->Add(pLastNameKey, toJson(getpLastName(), "String", "")); + pJsonObject->Add(pLastNameKey, toJson(getPLastName(), "String", "")); JsonString *pEmailKey = new JsonString(L"email"); - pJsonObject->Add(pEmailKey, toJson(getpEmail(), "String", "")); + pJsonObject->Add(pEmailKey, toJson(getPEmail(), "String", "")); JsonString *pPasswordKey = new JsonString(L"password"); - pJsonObject->Add(pPasswordKey, toJson(getpPassword(), "String", "")); + pJsonObject->Add(pPasswordKey, toJson(getPPassword(), "String", "")); JsonString *pPhoneKey = new JsonString(L"phone"); - pJsonObject->Add(pPhoneKey, toJson(getpPhone(), "String", "")); + pJsonObject->Add(pPhoneKey, toJson(getPPhone(), "String", "")); JsonString *pUserStatusKey = new JsonString(L"userStatus"); - pJsonObject->Add(pUserStatusKey, toJson(getpUserStatus(), "Integer", "")); + pJsonObject->Add(pUserStatusKey, toJson(getPUserStatus(), "Integer", "")); return pJsonObject; } Long* -SamiUser::getpId() { +SamiUser::getPId() { return pId; } void -SamiUser::setpId(Long* pId) { +SamiUser::setPId(Long* pId) { this->pId = pId; } String* -SamiUser::getpUsername() { +SamiUser::getPUsername() { return pUsername; } void -SamiUser::setpUsername(String* pUsername) { +SamiUser::setPUsername(String* pUsername) { this->pUsername = pUsername; } String* -SamiUser::getpFirstName() { +SamiUser::getPFirstName() { return pFirstName; } void -SamiUser::setpFirstName(String* pFirstName) { +SamiUser::setPFirstName(String* pFirstName) { this->pFirstName = pFirstName; } String* -SamiUser::getpLastName() { +SamiUser::getPLastName() { return pLastName; } void -SamiUser::setpLastName(String* pLastName) { +SamiUser::setPLastName(String* pLastName) { this->pLastName = pLastName; } String* -SamiUser::getpEmail() { +SamiUser::getPEmail() { return pEmail; } void -SamiUser::setpEmail(String* pEmail) { +SamiUser::setPEmail(String* pEmail) { this->pEmail = pEmail; } String* -SamiUser::getpPassword() { +SamiUser::getPPassword() { return pPassword; } void -SamiUser::setpPassword(String* pPassword) { +SamiUser::setPPassword(String* pPassword) { this->pPassword = pPassword; } String* -SamiUser::getpPhone() { +SamiUser::getPPhone() { return pPhone; } void -SamiUser::setpPhone(String* pPhone) { +SamiUser::setPPhone(String* pPhone) { this->pPhone = pPhone; } Integer* -SamiUser::getpUserStatus() { +SamiUser::getPUserStatus() { return pUserStatus; } void -SamiUser::setpUserStatus(Integer* pUserStatus) { +SamiUser::setPUserStatus(Integer* pUserStatus) { this->pUserStatus = pUserStatus; } diff --git a/samples/client/petstore/tizen/client/SamiUser.h b/samples/client/petstore/tizen/client/SamiUser.h index 24cc7b55638..a874f9c6245 100644 --- a/samples/client/petstore/tizen/client/SamiUser.h +++ b/samples/client/petstore/tizen/client/SamiUser.h @@ -43,29 +43,29 @@ public: SamiUser* fromJson(String* obj); - Long* getpId(); - void setpId(Long* pId); + Long* getPId(); + void setPId(Long* pId); - String* getpUsername(); - void setpUsername(String* pUsername); + String* getPUsername(); + void setPUsername(String* pUsername); - String* getpFirstName(); - void setpFirstName(String* pFirstName); + String* getPFirstName(); + void setPFirstName(String* pFirstName); - String* getpLastName(); - void setpLastName(String* pLastName); + String* getPLastName(); + void setPLastName(String* pLastName); - String* getpEmail(); - void setpEmail(String* pEmail); + String* getPEmail(); + void setPEmail(String* pEmail); - String* getpPassword(); - void setpPassword(String* pPassword); + String* getPPassword(); + void setPPassword(String* pPassword); - String* getpPhone(); - void setpPhone(String* pPhone); + String* getPPhone(); + void setPPhone(String* pPhone); - Integer* getpUserStatus(); - void setpUserStatus(Integer* pUserStatus); + Integer* getPUserStatus(); + void setPUserStatus(Integer* pUserStatus); private: