(String attribute)
| 141 | |
| 142 | |
| 143 | public boolean getBoolean(String attribute) { |
| 144 | String value = get(attribute); |
| 145 | if (value == null) { |
| 146 | System.err.println("Boolean not found: " + attribute); |
| 147 | return false; |
| 148 | } |
| 149 | return Boolean.parseBoolean(value); |
| 150 | } |
| 151 | |
| 152 | |
| 153 | public void setBoolean(String attribute, boolean value) { |
nothing calls this directly
no test coverage detected