MCPcopy Index your code
hub / github.com/processing/processing / getBoolean

Method getBoolean

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

getMethod · 0.95
parseBooleanMethod · 0.80
printlnMethod · 0.45

Tested by

no test coverage detected