examples window implementation

This commit is contained in:
benfry
2011-03-06 22:48:54 +00:00
parent ef81aac5c4
commit 4ef5c7aa93
6 changed files with 323 additions and 13 deletions

View File

@@ -139,6 +139,17 @@ public class JavaMode extends Mode {
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
protected File[] getExampleCategoryFolders() {
// Basics, Topics, 3D, Books
return new File[] {
new File(examplesFolder, "Basics"),
new File(examplesFolder, "Topics"),
new File(examplesFolder, "3D"),
new File(examplesFolder, "Books")
};
}
public String getDefaultExtension() {
return "pde";
}