forked from Tapadoo/Alerter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d87edc
commit a7ce909
Showing
9 changed files
with
59 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
alerter/src/main/java/com/tapadoo/alerter/OnAlertHiddenListener.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
alerter/src/main/java/com/tapadoo/alerter/OnAlertShownListener.java
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
alerter/src/main/java/com/tapadoo/alerter/OnHideAlertListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.tapadoo.alerter; | ||
|
||
/** | ||
* On Hide Alert Listener | ||
* | ||
* @author edgeorge | ||
* @since 20/02/2017. | ||
*/ | ||
|
||
public interface OnHideAlertListener { | ||
/** | ||
* Called when the Alert is hidden | ||
*/ | ||
void onHide(); | ||
} |
14 changes: 14 additions & 0 deletions
14
alerter/src/main/java/com/tapadoo/alerter/OnShowAlertListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.tapadoo.alerter; | ||
|
||
/** | ||
* On Show Alert Listener | ||
* | ||
* @author edgeorge | ||
* @since 20/02/2017. | ||
*/ | ||
public interface OnShowAlertListener { | ||
/** | ||
* Called when the Alert is initially Shown | ||
*/ | ||
void onShow(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters