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

Method getModeList

app/src/processing/app/Base.java:881–890  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

879
880
881 public List<Mode> getModeList() {
882 List<Mode> allModes = new ArrayList<>();
883 allModes.addAll(Arrays.asList(coreModes));
884 if (modeContribs != null) {
885 for (ModeContribution contrib : modeContribs) {
886 allModes.add(contrib.getMode());
887 }
888 }
889 return allModes;
890 }
891
892
893 public List<ExamplesContribution> getExampleContribs() {

Callers 8

BaseMethod · 0.95
refreshContribsMethod · 0.95
promptForModeMethod · 0.95
findModeMethod · 0.95
handleOpenPromptMethod · 0.95
checkSketchFolderMethod · 0.95
isReadOnlyMethod · 0.45

Calls 3

addAllMethod · 0.80
addMethod · 0.45
getModeMethod · 0.45

Tested by

no test coverage detected