igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
28 lines (27 loc) • 789 B
JavaScript
import { OnPopupEventArgs as OnPopupEventArgs_internal } from "./OnPopupEventArgs";
export class IgxOnPopupEventArgs {
constructor() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
createImplementation() {
return new OnPopupEventArgs_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
}