MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / load

Method load

CodenameOne/src/com/codename1/io/Properties.java:179–184  ·  view source on GitHub ↗
(InputStream in)

Source from the content-addressed store, hash-verified

177 ///
178 /// - `IOException`
179 public synchronized void load(InputStream in) throws IOException {
180 if (in == null) {
181 throw new NullPointerException("in == null");
182 }
183 load(new InputStreamReader(in, "UTF-8"));
184 }
185
186 /// Loads properties from the specified `Reader`.
187 /// The properties file is interpreted according to the following rules:

Callers 7

loadUtf8WithFallbackMethod · 0.95
addToResourcesMethod · 0.95
AboutMethod · 0.95
_mainMethod · 0.95
migrateGuiBuilderMethod · 0.95
loadProjectPropertiesMethod · 0.95

Calls 5

readMethod · 0.95
arraycopyMethod · 0.95
digitMethod · 0.95
substringMethod · 0.95
putMethod · 0.65

Tested by

no test coverage detected