True if the specified extension should be hidden when shown on a tab. For Processing, this is true for .pde files. (Broken out for subclasses.) You can override this in your Mode subclass to handle it differently.
(String what)
| 918 | * You can override this in your Mode subclass to handle it differently. |
| 919 | */ |
| 920 | public boolean hideExtension(String what) { |
| 921 | return what.equals(getDefaultExtension()); |
| 922 | } |
| 923 | |
| 924 | |
| 925 | /** |
no test coverage detected