Exemplo n.º 1
0
 public WrapperExec(string n)
 {
     execName = n;
     start = DefaultDoNothing;
     update = DefaultReturnFalse;
     end = DefaultDoNothing;
     undo = DefaultReturnFalse;
 }
Exemplo n.º 2
0
 public WrapperExec(string n, WrapperStartFunction s, WrapperUpdateFunction up, WrapperEndFunction e)
 {
     execName = n;
     start = s;
     update = up;
     end = e;
     undo = DefaultReturnFalse;
 }
Exemplo n.º 3
0
 public WrapperExec(string n, WrapperUpdateFunction up)
 {
     execName = n;
     start = DefaultDoNothing;
     update = up;
     end = DefaultDoNothing;
     undo = DefaultReturnFalse;
 }
Exemplo n.º 4
0
 public WrapperExec(string n, WrapperStartFunction s, WrapperUpdateFunction up, WrapperEndFunction e, WrapperUndoFunction u)
 {
     execName = n;
     start = s;
     update = up;
     end = e;
     undo = u;
 }