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

Method init

app/src/processing/app/Language.java:175–184  ·  view source on GitHub ↗

Singleton constructor

()

Source from the content-addressed store, hash-verified

173
174 /** Singleton constructor */
175 static public Language init() {
176 if (instance == null) {
177 synchronized (Language.class) {
178 if (instance == null) {
179 instance = new Language();
180 }
181 }
182 }
183 return instance;
184 }
185
186
187 static private String get(String key) {

Callers 5

getMethod · 0.95
getLanguagesMethod · 0.95
getLanguageMethod · 0.95
addModeStringsMethod · 0.95
createAndShowGUIMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected