(x1: number, x2: number, y: number)
| 59 | } |
| 60 | |
| 61 | public addBold(x1: number, x2: number, y: number): boolean{ |
| 62 | return this.addTwoTags(x1, x2, y, "<b>", "</b>"); |
| 63 | } |
| 64 | |
| 65 | public addCheckbox(x: number, y: number, callbackCollectionWhenChecked: CallbackCollection, callbackCollectionWhenUnchecked, otherClass: string, checkedByDefault: boolean = false): void{ |
| 66 | this.addTag(new RenderTag(x, "<span class=\"aroundCheckbox\"><input type=\"checkbox\" class=\"asciiCheckbox " + otherClass + "\""+ (checkedByDefault? "checked":"") +"></span>"), y); |
no test coverage detected