()
| 377 | } |
| 378 | |
| 379 | String getName() { |
| 380 | // Get the filename of the .pde (or .js or .py...) |
| 381 | String name = path.substring(path.lastIndexOf(File.separatorChar) + 1); |
| 382 | // Return the name with the extension removed |
| 383 | return name.substring(0, name.indexOf('.')); |
| 384 | } |
| 385 | |
| 386 | String getPath() { |
| 387 | return path; |
no outgoing calls
no test coverage detected