Override this to control the order of the first set of example folders and how they appear in the examples window.
()
| 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() { |