import { IPSAppUILogic } from './ipsapp-uilogic'; import { IPSAppUILogicRefView } from './ipsapp-uilogic-ref-view'; /** * * 继承父接口类型值[APP_OPENDATA] * @export * @interface IPSAppUIOpenDataLogic */ export interface IPSAppUIOpenDataLogic extends IPSAppUILogic { /** * 默认打开数据视图 * * @type {IPSAppUILogicRefView} */ getOpenDataPSAppView(): IPSAppUILogicRefView | null; /** * 默认打开数据视图 * * @type {IPSAppUILogicRefView} */ get openDataPSAppView(): IPSAppUILogicRefView | null; /** * 默认打开数据视图(必须存在) * * @type {IPSAppUILogicRefView} */ getOpenDataPSAppViewMust(): IPSAppUILogicRefView; /** * 多模式打开数据视图集合 * * @type {IPSAppUILogicRefView[]} */ getOpenDataPSAppViews(): IPSAppUILogicRefView[] | null; /** * 多模式打开数据视图集合 * * @type {IPSAppUILogicRefView[]} */ get openDataPSAppViews(): IPSAppUILogicRefView[] | null; findOpenDataPSAppUILogicRefView(objKey: any): IPSAppUILogicRefView | null; /** * 编辑模式 * @type {boolean} */ editMode: boolean; }