Package org.jfree.data.time

Examples of org.jfree.data.time.Hour


        return new Date[]{then.getTime(), now};
    }

    @Override
    protected RegularTimePeriod getTimePeriod(Date time) {
        return new Hour(time);
    }
View Full Code Here


    /**
     * Tests the equals method.
     */
    public void testEquals() {
        final Day day1 = new Day(29, SerialDate.MARCH, 2002);
        final Hour hour1 = new Hour(15, day1);
        final Minute minute1 = new Minute(15, hour1);
        final Second second1 = new Second(34, minute1);
        final Millisecond milli1 = new Millisecond(999, second1);
        final Day day2 = new Day(29, SerialDate.MARCH, 2002);
        final Hour hour2 = new Hour(15, day2);
        final Minute minute2 = new Minute(15, hour2);
        final Second second2 = new Second(34, minute2);
        final Millisecond milli2 = new Millisecond(999, second2);
        assertTrue(milli1.equals(milli2));
    }
View Full Code Here

     * Problem that an Hour instance is equal to itself.
     *
     * SourceForge Bug ID: 558850.
     */
    public void testEqualsSelf() {
        final Hour hour = new Hour();
        assertTrue(hour.equals(hour));
    }
View Full Code Here

    /**
     * Tests the equals method.
     */
    public void testEquals() {
        final Hour hour1 = new Hour(15, new Day(29, SerialDate.MARCH, 2002));
        final Hour hour2 = new Hour(15, new Day(29, SerialDate.MARCH, 2002));
        assertTrue(hour1.equals(hour2));
    }
View Full Code Here

     * hour constructor.
     */
    public void testDateConstructor1() {

        final TimeZone zone = TimeZone.getTimeZone("GMT");
        final Hour h1 = new Hour(new Date(1014307199999L), zone);
        final Hour h2 = new Hour(new Date(1014307200000L), zone);

        assertEquals(15, h1.getHour());
        assertEquals(1014307199999L, h1.getLastMillisecond(zone));

        assertEquals(16, h2.getHour());
        assertEquals(1014307200000L, h2.getFirstMillisecond(zone));

    }
View Full Code Here

     * Use this to check the hour constructor.
     */
    public void testDateConstructor2() {

        final TimeZone zone = TimeZone.getTimeZone("Australia/Sydney");
        final Hour h1 = new Hour(new Date(1014267599999L), zone);
        final Hour h2 = new Hour (new Date(1014267600000L), zone);

        assertEquals(15, h1.getHour());
        assertEquals(1014267599999L, h1.getLastMillisecond(zone));

        assertEquals(16, h2.getHour());
        assertEquals(1014267600000L, h2.getFirstMillisecond(zone));

    }
View Full Code Here

     * Set up an hour equal to hour zero, 1 January 1900.  Request the previous hour, it should be
     * null.
     */
    public void testFirstHourPrevious() {

        final Hour first = new Hour(0, new Day(1, SerialDate.JANUARY, 1900));
        final Hour previous = (Hour) first.previous();
        assertNull(previous);

    }
View Full Code Here

     * Set up an hour equal to hour zero, 1 January 1900.  Request the next hour, it should be
     * null.
     */
    public void testFirstHourNext() {

        final Hour first = new Hour(0, new Day(1, SerialDate.JANUARY, 1900));
        final Hour next = (Hour) first.next();
        assertEquals(1, next.getHour());
        assertEquals(1900, next.getYear());

    }
View Full Code Here

     * Set up an hour equal to hour zero, 1 January 1900.  Request the previous hour, it should be
     * null.
     */
    public void testLastHourPrevious() {

        final Hour last = new Hour(23, new Day(31, SerialDate.DECEMBER, 9999));
        final Hour previous = (Hour) last.previous();
        assertEquals(22, previous.getHour());
        assertEquals(9999, previous.getYear());

    }
View Full Code Here

     * Set up an hour equal to hour zero, 1 January 1900.  Request the next hour, it should be
     * null.
     */
    public void testLastHourNext() {

        final Hour last = new Hour(23, new Day(31, SerialDate.DECEMBER, 9999));
        final Hour next = (Hour) last.next();
        assertNull(next);

    }
View Full Code Here

TOP

Related Classes of org.jfree.data.time.Hour

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.