add javadoc

This commit is contained in:
contrudar 2016-12-05 12:33:59 +03:00
parent a6c82b19c8
commit 49b9a8f91b
2 changed files with 6 additions and 0 deletions

View File

@ -174,6 +174,7 @@ public abstract class CalendarAdapter<TDayViewHolder extends RecyclerView.ViewHo
* Bind data to a Header ViewHolder.
*
* @param viewHolder ViewHolder for binding;
* @param year year;
* @param monthName Name of month;
* @param firstMonth True if bind called for the first month in calendar.
*/

View File

@ -37,6 +37,11 @@ public class CalendarHeaderItem implements CalendarItem {
this.endRange = endRange;
}
/**
* Returns year.
*
* @return year.
*/
public int getYear() {
return year;
}