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

Method getModeList

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

Source from the content-addressed store, hash-verified

732
733
734 public List<Mode> getModeList() {
735 List<Mode> outgoing = new ArrayList<>();
736 outgoing.add(coreMode);
737 if (contribModes != null) {
738 for (ModeContribution contrib : contribModes) {
739 outgoing.add(contrib.getMode());
740 }
741 }
742 return outgoing;
743 }
744
745
746 void buildCoreModes() {

Callers 11

BaseMethod · 0.95
refreshContribsMethod · 0.95
findModeMethod · 0.95
handleOpenPromptMethod · 0.95
openSketchBundleMethod · 0.95
rebuildSketchbookMethod · 0.95
addSketchesMethod · 0.95
isReadOnlyMethod · 0.80
initLoaderMethod · 0.80
rebuildModePopupMethod · 0.80
updateMenuRecordMethod · 0.80

Calls 2

addMethod · 0.45
getModeMethod · 0.45

Tested by

no test coverage detected