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

Method get

app/src/processing/app/Language.java:173–184  ·  view source on GitHub ↗
(String key)

Source from the content-addressed store, hash-verified

171
172
173 static private String get(String key) {
174 LanguageBundle bundle = init().bundle;
175
176 try {
177 String value = bundle.getString(key);
178 if (value != null) {
179 return value;
180 }
181 } catch (MissingResourceException e) { }
182
183 return null;
184 }
185
186
187 /** Get translation from bundles. */

Callers 3

textMethod · 0.95
interpolateMethod · 0.95
pluralizeMethod · 0.95

Calls 2

initMethod · 0.95
getStringMethod · 0.95

Tested by

no test coverage detected