public PossessiveGroupQuantifierSet(AbstractSet innerSet, AbstractSet next,
                                     int type) : base(innerSet, next, type)
 {
     innerSet.SetNext(ILOG.J2CsMapping.RegEx.FSet.posFSet);
 }
Ejemplo n.º 2
0
 public override void SetNext(AbstractSet next)
 {
     fSet.SetNext(next);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Sets next abstract set.
 /// </summary>
 ///
 /// <param name="next">The next to set.</param>
 public override void SetNext(AbstractSet next)
 {
     this.next = next;
     withSurrogates.SetNext(next);
     withoutSurrogates.SetNext(next);
 }
 public PosCompositeGroupQuantifierSet(Quantifier quant,
                                       AbstractSet innerSet, AbstractSet next, int type, int setCounter) : base(quant, innerSet, next, type, setCounter)
 {
     innerSet.SetNext(ILOG.J2CsMapping.RegEx.FSet.posFSet);
 }