Example usage for org.jfree.data.time Second getMinute

List of usage examples for org.jfree.data.time Second getMinute

Introduction

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

Prototype

public Minute getMinute() 

Source Link

Document

Returns the minute.

Usage

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

/**
 * Some checks for the testNext() method.
 *///w  w  w  .  j  av  a  2 s.  c o  m
@Test
public void testNext() {
    Second s = new Second(55, 30, 1, 12, 12, 2000);
    s = (Second) s.next();
    assertEquals(2000, s.getMinute().getHour().getYear());
    assertEquals(12, s.getMinute().getHour().getMonth());
    assertEquals(12, s.getMinute().getHour().getDayOfMonth());
    assertEquals(1, s.getMinute().getHour().getHour());
    assertEquals(30, s.getMinute().getMinute());
    assertEquals(56, s.getSecond());
    s = new Second(59, 59, 23, 31, 12, 9999);
    assertNull(s.next());
}

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

/**
 * Some checks for the testNext() method.
 *//*from w  w  w. ja  v  a 2  s .co m*/
public void testNext() {
    Second s = new Second(55, 30, 1, 12, 12, 2000);
    s = (Second) s.next();
    assertEquals(2000, s.getMinute().getHour().getYear());
    assertEquals(12, s.getMinute().getHour().getMonth());
    assertEquals(12, s.getMinute().getHour().getDayOfMonth());
    assertEquals(1, s.getMinute().getHour().getHour());
    assertEquals(30, s.getMinute().getMinute());
    assertEquals(56, s.getSecond());
    s = new Second(59, 59, 23, 31, 12, 9999);
    assertNull(s.next());
}

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

/**
 * Constructs a millisecond./*from w w w .  jav a  2  s  . c  o  m*/
 *
 * @param millisecond  the millisecond (0-999).
 * @param second  the second.
 */
public Millisecond(int millisecond, Second second) {
    this.millisecond = millisecond;
    this.second = (byte) second.getSecond();
    this.minute = (byte) second.getMinute().getMinute();
    this.hour = (byte) second.getMinute().getHourValue();
    this.day = second.getMinute().getDay();
    peg(Calendar.getInstance());
}