Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. open class ViewHolder(view: View, val action: ((Item) -> Unit)? = null) : RecyclerView.ViewHolder(view) {
  2. // ...
  3. }
  4.  
  5. class AViewHolder(view: View, action: ((Item) -> Unit)? = null) : ViewHolder(view, action) {
  6. // ...
  7. }
  8.  
  9. class BViewHolder(view: View, action: ((Item) -> Unit)? = null) : ViewHolder(view, action) {
  10. // ...
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement