forked from fanruan/design
Yuan.Wang
4 years ago
4 changed files with 32 additions and 26 deletions
@ -1,17 +1,20 @@ |
|||||||
package com.fr.design.mainframe; |
package com.fr.design.mainframe; |
||||||
|
|
||||||
|
import javax.swing.JWindow; |
||||||
|
|
||||||
/** |
/** |
||||||
* @Author: Yuan.Wang |
* @Author: Yuan.Wang |
||||||
* @Date: 2020/10/9 |
* @Date: 2020/10/9 |
||||||
|
* 只关心Window的显示和隐藏操作时可以实现该接口 |
||||||
*/ |
*/ |
||||||
public interface PromptWindow { |
public interface PromptWindow { |
||||||
/** |
/** |
||||||
* 显示弹窗 |
* 显示弹窗 |
||||||
* */ |
*/ |
||||||
void showWindow(); |
void showWindow(); |
||||||
|
|
||||||
/** |
/** |
||||||
* 影藏弹窗 |
* 隐藏弹窗 |
||||||
* */ |
*/ |
||||||
void hideWindow(); |
void hideWindow(); |
||||||
} |
} |
||||||
|
@ -0,0 +1,21 @@ |
|||||||
|
package com.fr.design.notification; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: Yuan.Wang |
||||||
|
* @Date: 2020/10/10 |
||||||
|
*/ |
||||||
|
public class SnapChatFactory { |
||||||
|
public static SnapChat createSnapChat(boolean defaultStatus, SnapChatKey snapChatKey) { |
||||||
|
return new AbstractSnapChat() { |
||||||
|
@Override |
||||||
|
public boolean defaultStatus() { |
||||||
|
return defaultStatus; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public SnapChatKey key() { |
||||||
|
return snapChatKey; |
||||||
|
} |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue