Interface IViewPortHandler
-
- All Known Subinterfaces:
IViewPortHandler2
- All Known Implementing Classes:
CompoundViewPortHandler,ViewPortHandler
public interface IViewPortHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnextDay()Jumps one day forward.voidnextHour()Jumps to the next hour.voidnextMonth()Jumps to the next month.voidnextWeek()Jumps one week forward.voidprevDay()Jumps one day backwards.voidprevHour()Jumps to the previous hour.voidprevMonth()Jumps to the previous month.voidprevWeek()Jumps one week backwards.voidscrollingLeft(int diffCount)voidscrollingRight(int diffCount)
-
-
-
Method Detail
-
scrollingLeft
void scrollingLeft(int diffCount)
-
scrollingRight
void scrollingRight(int diffCount)
-
nextMonth
void nextMonth()
Jumps to the next month.
-
prevMonth
void prevMonth()
Jumps to the previous month.
-
nextWeek
void nextWeek()
Jumps one week forward.
-
prevWeek
void prevWeek()
Jumps one week backwards.
-
nextHour
void nextHour()
Jumps to the next hour.
-
prevHour
void prevHour()
Jumps to the previous hour.
-
nextDay
void nextDay()
Jumps one day forward.
-
prevDay
void prevDay()
Jumps one day backwards.
-
-