Skip to content

Commit

Permalink
Merge pull request #2 from simmikava/master
Browse files Browse the repository at this point in the history
Added getAllItem method
  • Loading branch information
ackava authored Apr 25, 2017
2 parents 5a2da23 + 2bbc198 commit 5414cd2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypercube/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 25
versionCode 1444
versionName "1.4.44"
versionCode 1445
versionName "1.4.45"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ public abstract class HeaderedAdapter<T,VH extends RecyclerView.ViewHolder>
private final Context context;
private List<HeaderOrItem<T>> allItems = new ArrayList<HeaderOrItem<T>>();


public List<HeaderOrItem<T>> getAllItems() {
return allItems;
}

private List<T> source;

public ModelFilter<T> getFilter() {
Expand Down

0 comments on commit 5414cd2

Please sign in to comment.