MonthDisplayHelper
public
class
MonthDisplayHelper
extends Object
Helps answer common questions that come up when displaying a month in a
6 row calendar grid format.
Not thread safe.
Summary
Inherited methods |
From
class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long millis, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
final
void
|
wait(long millis)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
|
Public constructors
MonthDisplayHelper
MonthDisplayHelper (int year,
int month,
int weekStartDay)
Parameters |
year |
int :
The year. |
month |
int :
The month. |
weekStartDay |
int :
What day of the week the week should start.
|
MonthDisplayHelper
MonthDisplayHelper (int year,
int month)
Parameters |
year |
int
|
month |
int
|
Public methods
getColumnOf
int getColumnOf (int day)
Returns |
int |
Which column day is in.
|
getDayAt
int getDayAt (int row,
int column)
Parameters |
row |
int :
The row, 0-5, starting from the top. |
column |
int :
The column, 0-6, starting from the left. |
Returns |
int |
The day at a particular row, column
|
getDigitsForRow
int[] getDigitsForRow (int row)
Parameters |
row |
int :
Which row (0-5). |
Returns |
int[] |
the digits of the month to display in one
of the 6 rows of a calendar month display.
|
getFirstDayOfMonth
int getFirstDayOfMonth ()
Returns |
int |
The first day of the month using a constants such as
SUNDAY .
|
getNumberOfDaysInMonth
int getNumberOfDaysInMonth ()
Returns |
int |
The number of days in the month.
|
getOffset
int getOffset ()
Returns |
int |
The offset from displaying everything starting on the very first
box. For example, if the calendar is set to display the first day of
the week as Sunday, and the month starts on a Wednesday, the offset is 3.
|
getRowOf
int getRowOf (int day)
Returns |
int |
Which row day is in.
|
getWeekStartDay
int getWeekStartDay ()
isWithinCurrentMonth
boolean isWithinCurrentMonth (int row,
int column)
Parameters |
row |
int
|
column |
int
|
Returns |
boolean |
Whether the row and column fall within the month.
|
nextMonth
void nextMonth ()
Increment the month.
previousMonth
void previousMonth ()
Decrement the month.