251 @return item type |
251 @return item type |
252 @rtype str |
252 @rtype str |
253 """ |
253 """ |
254 return self.ItemType |
254 return self.ItemType |
255 |
255 |
256 def buildItemDataString(self): |
|
257 """ |
|
258 Public method to build a string to persist the specific item data. |
|
259 |
|
260 This string must start with ", " and should be built like |
|
261 "attribute=value" with pairs separated by ", ". value must not |
|
262 contain ", " or newlines. |
|
263 |
|
264 @return persistence data |
|
265 @rtype str |
|
266 """ |
|
267 return "" |
|
268 |
|
269 def parseItemDataString(self, version, data): |
256 def parseItemDataString(self, version, data): |
270 """ |
257 """ |
271 Public method to parse the given persistence data. |
258 Public method to parse the given persistence data. |
272 |
259 |
273 @param version version of the data |
260 @param version version of the data |