Returns the name (without extension) of the main tab. (This version still has underscores and is a legit class name.) Most getName() calls before 4.0 were to get the main class, so this method addition allows the sketch name to be decoupled from the name of the main tab.
()
| 1694 | * from the name of the main tab. |
| 1695 | */ |
| 1696 | public String getMainName() { |
| 1697 | return code[0].getPrettyName(); |
| 1698 | } |
| 1699 | |
| 1700 | |
| 1701 | /** |
no test coverage detected