Skip to content

Commit 943efce

Browse files
committed
rebuilt
1 parent e7675e4 commit 943efce

File tree

10 files changed

+120
-120
lines changed

10 files changed

+120
-120
lines changed

samples/client/petstore/tizen/client/SamiCategory.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,31 +148,31 @@ SamiCategory::asJsonObject() {
148148

149149

150150
JsonString *pIdKey = new JsonString(L"id");
151-
pJsonObject->Add(pIdKey, toJson(getpId(), "Long", ""));
151+
pJsonObject->Add(pIdKey, toJson(getPId(), "Long", ""));
152152

153153

154154
JsonString *pNameKey = new JsonString(L"name");
155-
pJsonObject->Add(pNameKey, toJson(getpName(), "String", ""));
155+
pJsonObject->Add(pNameKey, toJson(getPName(), "String", ""));
156156

157157

158158
return pJsonObject;
159159
}
160160

161161
Long*
162-
SamiCategory::getpId() {
162+
SamiCategory::getPId() {
163163
return pId;
164164
}
165165
void
166-
SamiCategory::setpId(Long* pId) {
166+
SamiCategory::setPId(Long* pId) {
167167
this->pId = pId;
168168
}
169169

170170
String*
171-
SamiCategory::getpName() {
171+
SamiCategory::getPName() {
172172
return pName;
173173
}
174174
void
175-
SamiCategory::setpName(String* pName) {
175+
SamiCategory::setPName(String* pName) {
176176
this->pName = pName;
177177
}
178178

samples/client/petstore/tizen/client/SamiCategory.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ class SamiCategory: public SamiObject {
4242
SamiCategory* fromJson(String* obj);
4343

4444

45-
Long* getpId();
46-
void setpId(Long* pId);
45+
Long* getPId();
46+
void setPId(Long* pId);
4747

48-
String* getpName();
49-
void setpName(String* pName);
48+
String* getPName();
49+
void setPName(String* pName);
5050

5151

5252
private:

samples/client/petstore/tizen/client/SamiOrder.cpp

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -208,83 +208,83 @@ SamiOrder::asJsonObject() {
208208

209209

210210
JsonString *pIdKey = new JsonString(L"id");
211-
pJsonObject->Add(pIdKey, toJson(getpId(), "Long", ""));
211+
pJsonObject->Add(pIdKey, toJson(getPId(), "Long", ""));
212212

213213

214214
JsonString *pPetIdKey = new JsonString(L"petId");
215-
pJsonObject->Add(pPetIdKey, toJson(getpPetId(), "Long", ""));
215+
pJsonObject->Add(pPetIdKey, toJson(getPPetId(), "Long", ""));
216216

217217

218218
JsonString *pQuantityKey = new JsonString(L"quantity");
219-
pJsonObject->Add(pQuantityKey, toJson(getpQuantity(), "Integer", ""));
219+
pJsonObject->Add(pQuantityKey, toJson(getPQuantity(), "Integer", ""));
220220

221221

222222
JsonString *pShipDateKey = new JsonString(L"shipDate");
223-
pJsonObject->Add(pShipDateKey, toJson(getpShipDate(), "DateTime", ""));
223+
pJsonObject->Add(pShipDateKey, toJson(getPShipDate(), "DateTime", ""));
224224

225225

226226
JsonString *pStatusKey = new JsonString(L"status");
227-
pJsonObject->Add(pStatusKey, toJson(getpStatus(), "String", ""));
227+
pJsonObject->Add(pStatusKey, toJson(getPStatus(), "String", ""));
228228

229229

230230
JsonString *pCompleteKey = new JsonString(L"complete");
231-
pJsonObject->Add(pCompleteKey, toJson(getpComplete(), "Boolean", ""));
231+
pJsonObject->Add(pCompleteKey, toJson(getPComplete(), "Boolean", ""));
232232

233233

234234
return pJsonObject;
235235
}
236236

237237
Long*
238-
SamiOrder::getpId() {
238+
SamiOrder::getPId() {
239239
return pId;
240240
}
241241
void
242-
SamiOrder::setpId(Long* pId) {
242+
SamiOrder::setPId(Long* pId) {
243243
this->pId = pId;
244244
}
245245

246246
Long*
247-
SamiOrder::getpPetId() {
247+
SamiOrder::getPPetId() {
248248
return pPetId;
249249
}
250250
void
251-
SamiOrder::setpPetId(Long* pPetId) {
251+
SamiOrder::setPPetId(Long* pPetId) {
252252
this->pPetId = pPetId;
253253
}
254254

255255
Integer*
256-
SamiOrder::getpQuantity() {
256+
SamiOrder::getPQuantity() {
257257
return pQuantity;
258258
}
259259
void
260-
SamiOrder::setpQuantity(Integer* pQuantity) {
260+
SamiOrder::setPQuantity(Integer* pQuantity) {
261261
this->pQuantity = pQuantity;
262262
}
263263

264264
DateTime*
265-
SamiOrder::getpShipDate() {
265+
SamiOrder::getPShipDate() {
266266
return pShipDate;
267267
}
268268
void
269-
SamiOrder::setpShipDate(DateTime* pShipDate) {
269+
SamiOrder::setPShipDate(DateTime* pShipDate) {
270270
this->pShipDate = pShipDate;
271271
}
272272

273273
String*
274-
SamiOrder::getpStatus() {
274+
SamiOrder::getPStatus() {
275275
return pStatus;
276276
}
277277
void
278-
SamiOrder::setpStatus(String* pStatus) {
278+
SamiOrder::setPStatus(String* pStatus) {
279279
this->pStatus = pStatus;
280280
}
281281

282282
Boolean*
283-
SamiOrder::getpComplete() {
283+
SamiOrder::getPComplete() {
284284
return pComplete;
285285
}
286286
void
287-
SamiOrder::setpComplete(Boolean* pComplete) {
287+
SamiOrder::setPComplete(Boolean* pComplete) {
288288
this->pComplete = pComplete;
289289
}
290290

samples/client/petstore/tizen/client/SamiOrder.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,23 @@ class SamiOrder: public SamiObject {
4545
SamiOrder* fromJson(String* obj);
4646

4747

48-
Long* getpId();
49-
void setpId(Long* pId);
48+
Long* getPId();
49+
void setPId(Long* pId);
5050

51-
Long* getpPetId();
52-
void setpPetId(Long* pPetId);
51+
Long* getPPetId();
52+
void setPPetId(Long* pPetId);
5353

54-
Integer* getpQuantity();
55-
void setpQuantity(Integer* pQuantity);
54+
Integer* getPQuantity();
55+
void setPQuantity(Integer* pQuantity);
5656

57-
DateTime* getpShipDate();
58-
void setpShipDate(DateTime* pShipDate);
57+
DateTime* getPShipDate();
58+
void setPShipDate(DateTime* pShipDate);
5959

60-
String* getpStatus();
61-
void setpStatus(String* pStatus);
60+
String* getPStatus();
61+
void setPStatus(String* pStatus);
6262

63-
Boolean* getpComplete();
64-
void setpComplete(Boolean* pComplete);
63+
Boolean* getPComplete();
64+
void setPComplete(Boolean* pComplete);
6565

6666

6767
private:

samples/client/petstore/tizen/client/SamiPet.cpp

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -208,83 +208,83 @@ SamiPet::asJsonObject() {
208208

209209

210210
JsonString *pIdKey = new JsonString(L"id");
211-
pJsonObject->Add(pIdKey, toJson(getpId(), "Long", ""));
211+
pJsonObject->Add(pIdKey, toJson(getPId(), "Long", ""));
212212

213213

214214
JsonString *pCategoryKey = new JsonString(L"category");
215-
pJsonObject->Add(pCategoryKey, toJson(getpCategory(), "SamiCategory", ""));
215+
pJsonObject->Add(pCategoryKey, toJson(getPCategory(), "SamiCategory", ""));
216216

217217

218218
JsonString *pNameKey = new JsonString(L"name");
219-
pJsonObject->Add(pNameKey, toJson(getpName(), "String", ""));
219+
pJsonObject->Add(pNameKey, toJson(getPName(), "String", ""));
220220

221221

222222
JsonString *pPhotoUrlsKey = new JsonString(L"photoUrls");
223-
pJsonObject->Add(pPhotoUrlsKey, toJson(getpPhotoUrls(), "String", "array"));
223+
pJsonObject->Add(pPhotoUrlsKey, toJson(getPPhotoUrls(), "String", "array"));
224224

225225

226226
JsonString *pTagsKey = new JsonString(L"tags");
227-
pJsonObject->Add(pTagsKey, toJson(getpTags(), "SamiTag", "array"));
227+
pJsonObject->Add(pTagsKey, toJson(getPTags(), "SamiTag", "array"));
228228

229229

230230
JsonString *pStatusKey = new JsonString(L"status");
231-
pJsonObject->Add(pStatusKey, toJson(getpStatus(), "String", ""));
231+
pJsonObject->Add(pStatusKey, toJson(getPStatus(), "String", ""));
232232

233233

234234
return pJsonObject;
235235
}
236236

237237
Long*
238-
SamiPet::getpId() {
238+
SamiPet::getPId() {
239239
return pId;
240240
}
241241
void
242-
SamiPet::setpId(Long* pId) {
242+
SamiPet::setPId(Long* pId) {
243243
this->pId = pId;
244244
}
245245

246246
SamiCategory*
247-
SamiPet::getpCategory() {
247+
SamiPet::getPCategory() {
248248
return pCategory;
249249
}
250250
void
251-
SamiPet::setpCategory(SamiCategory* pCategory) {
251+
SamiPet::setPCategory(SamiCategory* pCategory) {
252252
this->pCategory = pCategory;
253253
}
254254

255255
String*
256-
SamiPet::getpName() {
256+
SamiPet::getPName() {
257257
return pName;
258258
}
259259
void
260-
SamiPet::setpName(String* pName) {
260+
SamiPet::setPName(String* pName) {
261261
this->pName = pName;
262262
}
263263

264264
IList*
265-
SamiPet::getpPhotoUrls() {
265+
SamiPet::getPPhotoUrls() {
266266
return pPhotoUrls;
267267
}
268268
void
269-
SamiPet::setpPhotoUrls(IList* pPhotoUrls) {
269+
SamiPet::setPPhotoUrls(IList* pPhotoUrls) {
270270
this->pPhotoUrls = pPhotoUrls;
271271
}
272272

273273
IList*
274-
SamiPet::getpTags() {
274+
SamiPet::getPTags() {
275275
return pTags;
276276
}
277277
void
278-
SamiPet::setpTags(IList* pTags) {
278+
SamiPet::setPTags(IList* pTags) {
279279
this->pTags = pTags;
280280
}
281281

282282
String*
283-
SamiPet::getpStatus() {
283+
SamiPet::getPStatus() {
284284
return pStatus;
285285
}
286286
void
287-
SamiPet::setpStatus(String* pStatus) {
287+
SamiPet::setPStatus(String* pStatus) {
288288
this->pStatus = pStatus;
289289
}
290290

samples/client/petstore/tizen/client/SamiPet.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,23 @@ class SamiPet: public SamiObject {
4545
SamiPet* fromJson(String* obj);
4646

4747

48-
Long* getpId();
49-
void setpId(Long* pId);
48+
Long* getPId();
49+
void setPId(Long* pId);
5050

51-
SamiCategory* getpCategory();
52-
void setpCategory(SamiCategory* pCategory);
51+
SamiCategory* getPCategory();
52+
void setPCategory(SamiCategory* pCategory);
5353

54-
String* getpName();
55-
void setpName(String* pName);
54+
String* getPName();
55+
void setPName(String* pName);
5656

57-
IList* getpPhotoUrls();
58-
void setpPhotoUrls(IList* pPhotoUrls);
57+
IList* getPPhotoUrls();
58+
void setPPhotoUrls(IList* pPhotoUrls);
5959

60-
IList* getpTags();
61-
void setpTags(IList* pTags);
60+
IList* getPTags();
61+
void setPTags(IList* pTags);
6262

63-
String* getpStatus();
64-
void setpStatus(String* pStatus);
63+
String* getPStatus();
64+
void setPStatus(String* pStatus);
6565

6666

6767
private:

samples/client/petstore/tizen/client/SamiTag.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,31 +148,31 @@ SamiTag::asJsonObject() {
148148

149149

150150
JsonString *pIdKey = new JsonString(L"id");
151-
pJsonObject->Add(pIdKey, toJson(getpId(), "Long", ""));
151+
pJsonObject->Add(pIdKey, toJson(getPId(), "Long", ""));
152152

153153

154154
JsonString *pNameKey = new JsonString(L"name");
155-
pJsonObject->Add(pNameKey, toJson(getpName(), "String", ""));
155+
pJsonObject->Add(pNameKey, toJson(getPName(), "String", ""));
156156

157157

158158
return pJsonObject;
159159
}
160160

161161
Long*
162-
SamiTag::getpId() {
162+
SamiTag::getPId() {
163163
return pId;
164164
}
165165
void
166-
SamiTag::setpId(Long* pId) {
166+
SamiTag::setPId(Long* pId) {
167167
this->pId = pId;
168168
}
169169

170170
String*
171-
SamiTag::getpName() {
171+
SamiTag::getPName() {
172172
return pName;
173173
}
174174
void
175-
SamiTag::setpName(String* pName) {
175+
SamiTag::setPName(String* pName) {
176176
this->pName = pName;
177177
}
178178

samples/client/petstore/tizen/client/SamiTag.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ class SamiTag: public SamiObject {
4242
SamiTag* fromJson(String* obj);
4343

4444

45-
Long* getpId();
46-
void setpId(Long* pId);
45+
Long* getPId();
46+
void setPId(Long* pId);
4747

48-
String* getpName();
49-
void setpName(String* pName);
48+
String* getPName();
49+
void setPName(String* pName);
5050

5151

5252
private:

0 commit comments

Comments
 (0)