You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.fr.design.mainframe; |
|
|
|
import javax.swing.JWindow; |
|
|
|
/** |
|
* @Author: Yuan.Wang |
|
* @Date: 2020/10/9 |
|
* 只关心Window的显示和隐藏操作时可以实现该接口 |
|
*/ |
|
public interface PromptWindow { |
|
/** |
|
* 显示弹窗 |
|
*/ |
|
void showWindow(); |
|
|
|
/** |
|
* 隐藏弹窗 |
|
*/ |
|
void hideWindow(); |
|
}
|
|
|