MCPcopy Create free account
hub / github.com/Odoo-mobile/framework / getString

Method getString

src/com/odoo/orm/OEDataRow.java:46–51  ·  view source on GitHub ↗
(String key)

Source from the content-addressed store, hash-verified

44 }
45
46 public String getString(String key) {
47 if (_data.containsKey(key) && _data.get(key) != null)
48 return _data.get(key).toString();
49 else
50 return "false";
51 }
52
53 public Boolean getBoolean(String key) {
54 return Boolean.parseBoolean(_data.get(key).toString());

Callers 5

setDrawerHeaderMethod · 0.95
updateAttachmentsMethod · 0.95
getViewMethod · 0.95
createViewMethod · 0.95
getIdNameMethod · 0.95

Calls 2

getMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected