250251252253254255256
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.TEXTBOX); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.TEXTBOX_TEMPLATE, id); }
272273274275276277278
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.PASSWORD_TEXTBOX); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.PASSWORD_TEXTBOX_TEMPLATE, id); }
294295296297298299300
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.TEXTAREA); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.TEXTAREA_TEMPLATE, id); }
316317318319320321322
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.LISTBOX); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.LISTBOX_TEMPLATE, id); }
338339340341342343344
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.CHECKBOX); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.CHECKBOX_TEMPLATE, id); }
360361362363364365366
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.RADIO_BUTTON); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.RADIO_BUTTON_TEMPLATE, id); }
382383384385386387388
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.LABEL); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.LABEL_TEMPLATE, id); }
404405406407408409410
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.BUTTON); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.BUTTON_TEMPLATE, id); }
426427428429430431432
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.IMAGE); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.IMAGE_TEMPLATE, id); }
448449450451452453454
final GeneratorContext context = this.getGeneratorContext(); context.debug(Constants.HYPERLINK); context.debug("id=" + id); return new BindWidgetTemplatedFile(Constants.HYPERLINK_TEMPLATE, id); }