• This project
    • Loading...
  • Sign in

fastcoding / wdlayout

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wdlayout
  • ..
  • layoutdata
  • ILayoutPresenter.java
  • 提交代码 · 927282df
    927282df Browse Files
    张波 authored 2024-10-15 17:49:07 +0800
ILayoutPresenter.java 344 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

/*
 * Copyright (c) People Technologies Co., Ltd. 2019-2022. All rights reserved.
 */

package com.wd.display.comp.layoutdata;

public interface ILayoutPresenter<T extends AbsPage> {

    /**
     * 页面刷新完成
     */
    void onRefreshPageSuccess();

    /**
     * 页面数据刷新失败
     */
    void onRefreshDataFailed();

}