View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import java.io.*;
4   
5   /***
6    * Abstraction of an interval.
7    */
8   public interface GB_SelectorSet
9           extends
10              GB_Selector,
11              Serializable
12  {
13      /***
14       * Returns the type of interval.
15       */
16      void setType(
17              int a_type);
18  
19      void setAcceptNull(
20              boolean a_flag);
21  
22      void setInverse(
23              boolean a_flag);
24  
25  }