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
a2dc38c
commit e29819f
Showing
9 changed files
with
448 additions
and
503 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
7 changes: 3 additions & 4 deletions
7
.../tapadoo/alerter/OnHideAlertListener.java → ...om/tapadoo/alerter/OnHideAlertListener.kt
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 |
---|---|---|
@@ -1,15 +1,14 @@ | ||
package com.tapadoo.alerter; | ||
package com.tapadoo.alerter | ||
|
||
/** | ||
* On Hide Alert Listener | ||
* | ||
* @author edgeorge | ||
* @since 20/02/2017. | ||
*/ | ||
|
||
public interface OnHideAlertListener { | ||
interface OnHideAlertListener { | ||
/** | ||
* Called when the Alert is hidden | ||
*/ | ||
void onHide(); | ||
fun onHide() | ||
} |
6 changes: 3 additions & 3 deletions
6
.../tapadoo/alerter/OnShowAlertListener.java → ...om/tapadoo/alerter/OnShowAlertListener.kt
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.tapadoo.alerter; | ||
package com.tapadoo.alerter | ||
|
||
/** | ||
* On Show Alert Listener | ||
* | ||
* @author edgeorge | ||
* @since 20/02/2017. | ||
*/ | ||
public interface OnShowAlertListener { | ||
interface OnShowAlertListener { | ||
/** | ||
* Called when the Alert is initially Shown | ||
*/ | ||
void onShow(); | ||
fun onShow() | ||
} |
Oops, something went wrong.