MCPcopy Index your code
hub / github.com/benfry/processing4 / getBoolean

Method getBoolean

app/src/processing/app/Settings.java:143–150  ·  view source on GitHub ↗
(String attribute)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 3

getMethod · 0.95
parseBooleanMethod · 0.80
printlnMethod · 0.45

Tested by

no test coverage detected