Example #1
0
 /*
  * Function: mimic
  */
 public void mimic(CharSet s)
 {
     compflag = s.compflag;
     set      = new BitSet(s.set);
 }
Example #2
0
 public BitSetEnum(BitSet x)
 {
     p = x;
 }
Example #3
0
 /*
  * Function: CharSet
  */
 public CharSet()
 {
     set      = new BitSet();
     compflag = false;
 }