aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/dvr/ui/list/SchedulesHeaderRow.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/tv/dvr/ui/list/SchedulesHeaderRow.java')
-rw-r--r--src/com/android/tv/dvr/ui/list/SchedulesHeaderRow.java63
1 files changed, 20 insertions, 43 deletions
diff --git a/src/com/android/tv/dvr/ui/list/SchedulesHeaderRow.java b/src/com/android/tv/dvr/ui/list/SchedulesHeaderRow.java
index 715ecb8c..bbddc07f 100644
--- a/src/com/android/tv/dvr/ui/list/SchedulesHeaderRow.java
+++ b/src/com/android/tv/dvr/ui/list/SchedulesHeaderRow.java
@@ -18,12 +18,9 @@ package com.android.tv.dvr.ui.list;
import com.android.tv.data.Program;
import com.android.tv.dvr.data.SeriesRecording;
-
import java.util.List;
-/**
- * A base class for the rows for schedules' header.
- */
+/** A base class for the rows for schedules' header. */
abstract class SchedulesHeaderRow {
private String mTitle;
private String mDescription;
@@ -35,51 +32,37 @@ abstract class SchedulesHeaderRow {
mDescription = description;
}
- /**
- * Sets title.
- */
+ /** Sets title. */
public void setTitle(String title) {
mTitle = title;
}
- /**
- * Sets description.
- */
+ /** Sets description. */
public void setDescription(String description) {
mDescription = description;
}
- /**
- * Sets count of items.
- */
+ /** Sets count of items. */
public void setItemCount(int itemCount) {
mItemCount = itemCount;
}
- /**
- * Returns title.
- */
+ /** Returns title. */
public String getTitle() {
return mTitle;
}
- /**
- * Returns description.
- */
+ /** Returns description. */
public String getDescription() {
return mDescription;
}
- /**
- * Returns count of items.
- */
+ /** Returns count of items. */
public int getItemCount() {
return mItemCount;
}
- /**
- * The header row which represent the date.
- */
+ /** The header row which represent the date. */
public static class DateHeaderRow extends SchedulesHeaderRow {
private long mDeadLineMs;
@@ -88,47 +71,41 @@ abstract class SchedulesHeaderRow {
mDeadLineMs = deadLineMs;
}
- /**
- * Returns the latest time of the list which belongs to the header row.
- */
+ /** Returns the latest time of the list which belongs to the header row. */
public long getDeadLineMs() {
return mDeadLineMs;
}
}
- /**
- * The header row which represent the series recording.
- */
+ /** The header row which represent the series recording. */
public static class SeriesRecordingHeaderRow extends SchedulesHeaderRow {
private SeriesRecording mSeriesRecording;
private List<Program> mPrograms;
- public SeriesRecordingHeaderRow(String title, String description, int itemCount,
- SeriesRecording series, List<Program> programs) {
+ public SeriesRecordingHeaderRow(
+ String title,
+ String description,
+ int itemCount,
+ SeriesRecording series,
+ List<Program> programs) {
super(title, description, itemCount);
mSeriesRecording = series;
mPrograms = programs;
}
- /**
- * Returns the list of programs which belong to the series.
- */
+ /** Returns the list of programs which belong to the series. */
public List<Program> getPrograms() {
return mPrograms;
}
- /**
- * Returns the series recording, it is for series schedules list.
- */
+ /** Returns the series recording, it is for series schedules list. */
public SeriesRecording getSeriesRecording() {
return mSeriesRecording;
}
- /**
- * Sets the series recording.
- */
+ /** Sets the series recording. */
public void setSeriesRecording(SeriesRecording seriesRecording) {
mSeriesRecording = seriesRecording;
}
}
-} \ No newline at end of file
+}