(type: StatusBarTabType, xPos: number, text1: string, text2: string, text3: string, callbackCollection: CallbackCollection)
| 151 | |
| 152 | // Private methods |
| 153 | private addTab(type: StatusBarTabType, xPos: number, text1: string, text2: string, text3: string, callbackCollection: CallbackCollection): void{ |
| 154 | // We add the tab |
| 155 | this.tabs.push(new StatusBarTab(this, type, xPos, text1, text2, text3, this.tabs.length, callbackCollection)); |
| 156 | } |
| 157 | |
| 158 | private clickedOnCorner(): void{ |
| 159 | this.setNextCornerStep(); |
no outgoing calls
no test coverage detected