View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Abstraction of a date interval.
5    */
6   public interface GB_IntervalSet
7           extends
8               GB_Interval
9   {
10      void setMinIncluded(
11              boolean a_flag);
12  
13      void setMaxIncluded(
14              boolean a_flag);
15  
16      void setInverse(
17              boolean a_flag);
18  
19      void setMinValue(
20              Object a_value);
21  
22      void setMaxValue(
23              Object a_value);
24  }