public abstract class ShowLaneCustomizer
extends java.lang.Object
Constructor and Description |
---|
ShowLaneCustomizer() |
Modifier and Type | Method and Description |
---|---|
boolean |
executeDefault(Lane lane,
CalendarView calendarView)
Call executeDefault() to run the original method for default behavior
|
Calendar |
getCalendar()
Returns the Calendar being customized
|
void |
setCalendar(Calendar calendar) |
abstract boolean |
shouldShowLane(Lane lane,
CalendarView calendarView)
shouldShowLane() should be implemented and return true if the passed lane should be visible in the passed view
Use executeDefault() to run the original method to fall back on default behavior.
|
public void setCalendar(Calendar calendar)
public Calendar getCalendar()
public boolean executeDefault(Lane lane, CalendarView calendarView)
public abstract boolean shouldShowLane(Lane lane, CalendarView calendarView)
lane
- the lane in questioncalendarView
- the view in which the lane exists