| 620 | } |
| 621 | |
| 622 | JsonStringValue *JsonSchema::getStringValue(const QString &name, JsonObjectValue *value) |
| 623 | { |
| 624 | JsonValue *v = value->member(name); |
| 625 | if (!v) |
| 626 | return 0; |
| 627 | |
| 628 | return v->toString(); |
| 629 | } |
| 630 | |
| 631 | JsonObjectValue *JsonSchema::getObjectValue(const QString &name, JsonObjectValue *value) |
| 632 | { |
no test coverage detected