| java.lang.Object org.jfree.chart.axis.Tick org.jfree.chart.axis.ValueTick org.jfree.chart.axis.DateTick
Constructor Summary | |
public | DateTick(Date date, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle) Creates a new date tick. |
Method Summary | |
public boolean | equals(Object obj) Tests this tick for equality with an arbitrary object.
Parameters: obj - the object to test (null permitted). | public Date | getDate() Returns the date. | public int | hashCode() Returns a hash code for this object. |
DateTick | public DateTick(Date date, String label, TextAnchor textAnchor, TextAnchor rotationAnchor, double angle)(Code) | | Creates a new date tick.
Parameters: date - the date. Parameters: label - the label. Parameters: textAnchor - the part of the label that is aligned to the anchor point. Parameters: rotationAnchor - defines the rotation point relative to the text. Parameters: angle - the rotation angle (in radians). |
equals | public boolean equals(Object obj)(Code) | | Tests this tick for equality with an arbitrary object.
Parameters: obj - the object to test (null permitted). A boolean. |
getDate | public Date getDate()(Code) | | Returns the date.
The date. |
hashCode | public int hashCode()(Code) | | Returns a hash code for this object.
A hash code. |
|
|