Skip to content

Commit

Permalink
Update javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavpandey committed Dec 3, 2022
1 parent 21580f6 commit 09586d5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
public class DynamicFeaturesAdapter extends
SimpleDataBinderAdapter<List<DynamicInfo>, DynamicFeatureBinder> {

/**
* Constructor to initialize an object of this class.
*
* @param data The data for this adapter.
*/
public DynamicFeaturesAdapter(@Nullable List<DynamicInfo> data) {
addDataBinder(new DynamicFeatureBinder(this));
setData(data);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
*/
public class DynamicFeatureBinder extends InfoBinder<String> {

/**
* Constructor to initialize an object of this class.
*
* @param binderAdapter The dynamic features adapter for the recycler view.
*/
public DynamicFeatureBinder(@NonNull DynamicFeaturesAdapter binderAdapter) {
super(binderAdapter);
}
Expand Down

0 comments on commit 09586d5

Please sign in to comment.