Example usage for org.jfree.data.time Month Month

List of usage examples for org.jfree.data.time Month Month

Introduction

In this page you can find the example usage for org.jfree.data.time Month Month.

Prototype

public Month() 

Source Link

Document

Constructs a new Month, based on the current system time.

Usage

From source file:org.jfree.data.time.MonthTest.java

/**
 * Check that a Month instance is equal to itself.
 *
 * SourceForge Bug ID: 558850./*from w  ww . j  a  va  2  s.c om*/
 */
@Test
public void testEqualsSelf() {
    Month month = new Month();
    assertTrue(month.equals(month));
}

From source file:org.jfree.data.time.junit.MonthTest.java

/**
 * Check that a Month instance is equal to itself.
 *
 * SourceForge Bug ID: 558850./*from  w ww .j  a  v a2s  .  c  om*/
 */
public void testEqualsSelf() {
    Month month = new Month();
    assertTrue(month.equals(month));
}