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

Method init

app/src/processing/app/Language.java:161–170  ·  view source on GitHub ↗

Singleton constructor

()

Source from the content-addressed store, hash-verified

159
160 /** Singleton constructor */
161 static public Language init() {
162 if (instance == null) {
163 synchronized (Language.class) {
164 if (instance == null) {
165 instance = new Language();
166 }
167 }
168 }
169 return instance;
170 }
171
172
173 static private String get(String key) {

Callers 4

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

Calls

no outgoing calls

Tested by

no test coverage detected