12 lines
185 B
Java
12 lines
185 B
Java
package com.xscm.moduleutil.activity;
|
|
|
|
public interface IView<T> {
|
|
T getSelfActivity();
|
|
|
|
void showLoadings();
|
|
|
|
void showLoadings(String content);
|
|
|
|
void disLoadings();
|
|
|
|
} |