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

nyla.solutions.global.data.TimeInterval Maven / Gradle / Ivy

package nyla.solutions.global.data;

import java.util.Date;

public interface TimeInterval
{
   /**
    * @return the start
    */
   public abstract Date getStartDate();
   // --------------------------------------------

   /**
    * @param start the start to set
    */
   public abstract void setStartDate(Date start);
   //----------------------------------------------
   
   /**
    * @return the end
    */
   public abstract Date getEndDate();
   // --------------------------------------------

   /**
    * @param end the end to set
    */
   public abstract void setEndDate(Date end);
   // --------------------------------------------
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy