All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.marschal.svndiffstat.TimeAxisKey Maven / Gradle / Ivy

The newest version!
package com.github.marschal.svndiffstat;

import java.util.Date;

import org.jfree.chart.axis.DateTickUnitType;
import org.jfree.data.time.RegularTimePeriod;

abstract class TimeAxisKey {

  abstract RegularTimePeriod toPeriod();

  abstract int unitsBetween(TimeAxisKey other, DateTickUnitType type);

  interface TimeAxisKeyFactory {

    TimeAxisKey fromDate(Date date);

  }

  abstract TimeAxisKey previous();

  abstract TimeAxisKey next();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy