Exemplo n.º 1
0
 public void SetValues(BranchCondition branchCondition)
 {
     lParamType  = branchCondition.lParamType;
     rParamType  = branchCondition.rParamType;
     lParameter  = branchCondition.lParameter;
     opParameter = branchCondition.opParameter;
     rParameter  = branchCondition.rParameter;
 }
Exemplo n.º 2
0
 public void SetValues(int lType, int rType, string lParam, int opParam, string rParam)
 {
     lParamType  = (IFBranchParamType)lType;
     rParamType  = (IFBranchParamType)rType;
     lParameter  = lParam;
     opParameter = (IFBranchOpParamType)opParam;
     rParameter  = rParam;
 }
Exemplo n.º 3
0
 public string GetStringFromOpType(IFBranchOpParamType type)
 {
     return(opTypeConverterToString[type]);
 }