(x: number, y: number, url: string, text: string)
| 117 | } |
| 118 | |
| 119 | public addHtmlLink(x: number, y: number, url: string, text: string): void{ |
| 120 | this.drawString(text, x, y); |
| 121 | this.addTwoTags(x, x + text.length, y, "<a target=\"_blank\" href=\"" + url + "\">", "</a>"); |
| 122 | } |
| 123 | |
| 124 | public addLinkCall(e: string, callbackCollection: CallbackCollection): void{ |
| 125 | this.links.push(new RenderLinkClick(e, callbackCollection)); |
no test coverage detected