Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing methods to SimpleTableViewListener #356

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ public abstract class SimpleTableViewListener implements ITableViewListener {
public void onCellClicked(@NonNull RecyclerView.ViewHolder cellView, int column, int row) {
}

@Override
public void onCellDoubleClicked(@NonNull RecyclerView.ViewHolder cellView, int column, int row) {
}

@Override
public void onCellLongPressed(@NonNull RecyclerView.ViewHolder cellView, int column, int row) {
}
Expand All @@ -19,6 +23,10 @@ public void onCellLongPressed(@NonNull RecyclerView.ViewHolder cellView, int col
public void onColumnHeaderClicked(@NonNull RecyclerView.ViewHolder columnHeaderView, int column) {
}

@Override
public void onColumnHeaderDoubleClicked(@NonNull RecyclerView.ViewHolder columnHeaderView, int column) {
}

@Override
public void onColumnHeaderLongPressed(@NonNull RecyclerView.ViewHolder columnHeaderView, int column) {
}
Expand All @@ -27,6 +35,10 @@ public void onColumnHeaderLongPressed(@NonNull RecyclerView.ViewHolder columnHea
public void onRowHeaderClicked(@NonNull RecyclerView.ViewHolder rowHeaderView, int row) {
}

@Override
public void onRowHeaderDoubleClicked(@NonNull RecyclerView.ViewHolder rowHeaderView, int row) {
}

@Override
public void onRowHeaderLongPressed(@NonNull RecyclerView.ViewHolder rowHeaderView, int row) {
}
Expand Down