(String attribute)
| 129 | |
| 130 | |
| 131 | public boolean getBoolean(String attribute) { |
| 132 | String value = get(attribute); |
| 133 | if (value == null) { |
| 134 | System.err.println("Boolean not found: " + attribute); |
| 135 | return false; |
| 136 | } |
| 137 | return Boolean.parseBoolean(value); |
| 138 | } |
| 139 | |
| 140 | |
| 141 | public void setBoolean(String attribute, boolean value) { |
nothing calls this directly
no test coverage detected