-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update SeatClickListener.kt and SeatLongClickListener.kt
- Loading branch information
1 parent
af9d1ed
commit 13a916c
Showing
5 changed files
with
47 additions
and
32 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
11 changes: 11 additions & 0 deletions
11
SeatBookView/src/main/java/dev/jahidhasanco/seatbookview/SeatClickListener.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package dev.jahidhasanco.seatbookview | ||
|
||
import android.view.View | ||
|
||
|
||
interface SeatClickListener { | ||
fun onAvailableSeatClick(selectedIdList: List<Int>, view: View) | ||
fun onBookedSeatClick(view: View) | ||
fun onReservedSeatClick(view: View) | ||
} | ||
|
9 changes: 9 additions & 0 deletions
9
SeatBookView/src/main/java/dev/jahidhasanco/seatbookview/SeatLongClickListener.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package dev.jahidhasanco.seatbookview | ||
|
||
import android.view.View | ||
|
||
interface SeatLongClickListener { | ||
fun onAvailableSeatLongClick(view: View) | ||
fun onBookedSeatLongClick(view: View) | ||
fun onReservedSeatLongClick(view: View) | ||
} |
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