Maps name to value, clobbering any existing name/value mapping with the same name. @return this object.
(String name, boolean value)
| 201 | * @return this object. |
| 202 | */ |
| 203 | public JSONObject put(String name, boolean value) throws JSONException { |
| 204 | nameValuePairs.put(checkName(name), value); |
| 205 | return this; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Maps {@code name} to {@code value}, clobbering any existing name/value |
no test coverage detected