Beispiel #1
0
 public JazzCommand(JazzGraphContainer container)
 {
     if (container == null)
     {
         throw new ArgumentNullException("container");
     }
     this.mContainer = container;
 }
Beispiel #2
0
 public JazzCommand(JazzGraphContainer container, 
     bool groupWithPrevCommand, string label)
     : base(groupWithPrevCommand, label)
 {
     if (container == null)
     {
         throw new ArgumentNullException("container");
     }
     this.mContainer = container;
 }