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

Method text

app/src/processing/app/Language.java:202–209  ·  view source on GitHub ↗

Get translation from bundles.

(String key)

Source from the content-addressed store, hash-verified

200
201 /** Get translation from bundles. */
202 static public String text(String key) {
203 String value = get(key);
204 if (value == null) {
205 // MissingResourceException and null values
206 return key;
207 }
208 return value;
209 }
210
211
212 static public String interpolate(String key, Object... arguments) {

Callers 15

getPromptMethod · 0.95
rebuildToolbarMenuMethod · 0.95
rebuildImportMenuMethod · 0.95
initDefaultFileMenuMethod · 0.95
populateToolsMenuMethod · 0.95
handleOpenPromptMethod · 0.95
handleCloseMethod · 0.95
buildSketchbookTreeMethod · 0.95
handleNewCodeMethod · 0.95
handleRenameCodeMethod · 0.95

Calls 1

getMethod · 0.95

Tested by

no test coverage detected