public SrgsItemDebugDisplay(SrgsItem item)
 {
     _weight            = item._weight;
     _repeatProbability = item._repeatProbability;
     _minRepeat         = item._minRepeat;
     _maxRepeat         = item._maxRepeat;
     _elements          = item._elements;
 }
Beispiel #2
0
 private SrgsRule()
 {
     _elements = new SrgsElementList();
 }
 public SrgsItem()
 {
     _elements = new SrgsElementList();
 }