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

Method getExampleCategoryFolders

app/src/processing/app/Mode.java:650–656  ·  view source on GitHub ↗

Override this to control the order of the first set of example folders and how they appear in the examples window.

()

Source from the content-addressed store, hash-verified

648 * and how they appear in the examples window.
649 */
650 public File[] getExampleCategoryFolders() {
651 return examplesFolder.listFiles(new FilenameFilter() {
652 public boolean accept(File dir, String name) {
653 return dir.isDirectory() && name.charAt(0) != '.';
654 }
655 });
656 }
657
658
659 public void rebuildExamplesFrame() {

Callers 1

buildTreeMethod · 0.45

Calls 1

listFilesMethod · 0.45

Tested by

no test coverage detected