angular-jsf-components
Version:
JSF Compliant Angular Components
36 lines (33 loc) • 1.27 kB
text/typescript
import {Component, ElementRef, forwardRef, ViewChild} from '@angular/core';
import {NG_VALUE_ACCESSOR, NgModel} from '@angular/forms';
import {HFormService} from '../../services/h-form.service';
import {MessageService} from '../../services/message.service';
import {JsfElement} from '../../superclass/jsf-element';
import {JsfInput} from '../../superclass/jsf-input';
export class HSelectBooleanCheckboxComponent extends JsfInput {
constructor(hFormService: HFormService, messageService: MessageService,
elementRef: ElementRef) {
super(hFormService, messageService, elementRef);
}
}