angular-jsf-components
Version:
JSF Compliant Angular Components
32 lines (29 loc) • 1.13 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 HInputTextComponent extends JsfInput {
constructor(hFormService: HFormService, messageService: MessageService,
elementRef: ElementRef) {
super(hFormService, messageService, elementRef);
}
}