Example #1
0
 public override void SetNext(NonTerninalExp command)
 {
     _next = command;
 }
Example #2
0
 public abstract void SetNext(NonTerninalExp exp);
Example #3
0
 public override void SetNext(NonTerninalExp exp)
 {
 }
Example #4
0
 public override void SetNext(NonTerninalExp next)
 {
     _next = next;
 }
Example #5
0
 public BracketsCommand(NonTerninalExp insideCommands)
 {
     _insideCommands = insideCommands;
 }
Example #6
0
 public void SetNegativeNext(NonTerninalExp command)
 {
     _nextNegative = command;
 }
Example #7
0
 public void SetPositiveNext(NonTerninalExp command)
 {
     _nextPositive = command;
 }