import { IPSModelSortable } from '../ipsmodel-sortable'; import { IPSSysPFPlugin } from './ipssys-pfplugin'; import { PSModelObjectImpl } from '../psmodel-object-impl'; export class PSSysPFPluginImpl extends PSModelObjectImpl implements IPSSysPFPlugin, IPSModelSortable { get codeName(): string { return this.M.codeName; } get dynaModelFilePath(): string { return this.M.dynaModelFilePath; } get mOSFilePath(): string { return this.M.mOSFilePath; } get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } get orderValue(): number { return this.M.orderValue != null ? this.M.orderValue : 99999; } get pluginCode(): string { return this.M.pluginCode; } get pluginModel(): IModel { return this.M.pluginModel; } get pluginTag(): string { return this.M.pluginTag; } get pluginType(): | 'AC_ITEM' | 'CHART_RENDER' | 'CHART_AXISRENDER' | 'CHART_SERIESRENDER' | 'CHART_CSRENDER' | 'CUSTOM' | 'DATAVIEW_ITEM' | 'DATAVIEW_RENDER' | 'EDITFORM_RENDER' | 'EDITOR_CUSTOMSTYLE' | 'FORM_USERCONTROL' | 'GRID_COLRENDER' | 'GRID_RENDER' | 'LIST_ITEMRENDER' | 'LIST_RENDER' | 'PORTLET_CUSTOM' | 'PORTLET_TITLEBAR' | 'SEARCHFORM_RENDER' | 'TOOLBAR_ITEM' | 'TOOLBAR_RENDER' | 'TREEEXPBAR_RENDER' | 'TREE_RENDER' | 'UIENGINE' | 'UILOGICNODE' | 'VIEW_CUSTOM' | 'DEMETHOD' | 'APPUTIL' | 'APPCOUNTER' | 'DEDATAIMPORT' | 'DEDATAEXPORT' | 'DEFVALUERULE' | 'APPVALUERULE' | 'SEARCHBAR_ITEM' | 'SEARCHBAR_RENDER' | 'WIZARDPANEL_RENDER' | 'DEUIACTION' | 'CALENDAR_ITEM' | 'CALENDAR_RENDER' | 'MAPVIEW_ITEM' | 'MAPVIEW_RENDER' | 'PANEL_ITEM' | 'PANEL_RENDER' | 'DASHBOARD_ITEM' | 'DASHBOARD_RENDER' | 'APPUILOGIC' | 'APPMENU_ITEM' | 'APPMENU_RENDER' | 'TITLEBAR_RENDER' { return this.M.pluginType; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get rTObjectName(): string { return this.M.rTObjectName; } get rTObjectSource(): number { return this.M.rTObjectSource != null ? this.M.rTObjectSource : 0; } get userCat(): string { return this.M.userCat; } get userTag(): string { return this.M.userTag; } get userTag2(): string { return this.M.userTag2; } get userTag3(): string { return this.M.userTag3; } get userTag4(): string { return this.M.userTag4; } get extendStyleOnly(): boolean { return this.M.extendStyleOnly != null ? this.M.extendStyleOnly : false; } get replaceDefault(): boolean { return this.M.replaceDefault != null ? this.M.replaceDefault : false; } get runtimeObject(): boolean { return this.M.runtimeObject != null ? this.M.runtimeObject : false; } get cls(): string { return 'PSSysPFPluginImpl'; } instanceof(cls: string): boolean { if (cls == 'IPSModelSortable' || cls == 'res.IPSSysPFPlugin') return true; return super.instanceof(cls); } }