Exemplo n.º 1
0
Arquivo: Env.cs Projeto: ikvm/test
 public virtual void putDataSets(IDictionary dsMap)
 {
     if (dsMap != null)
     {
         SupportClass.PutAll(DataSetsMap, dsMap);
     }
 }
Exemplo n.º 2
0
Arquivo: Env.cs Projeto: ikvm/test
 public virtual void putParams(IDictionary paramsMap)
 {
     if (paramsMap != null)
     {
         if (ParamsMap != null)
         {
             SupportClass.PutAll(ParamsMap, paramsMap);
         }
         else
         {
             ParamsMap = (StringMap)paramsMap;
         }
     }
 }
Exemplo n.º 3
0
Arquivo: Env.cs Projeto: ikvm/test
 public virtual void putMacros(IDictionary macroMap)
 {
     if (macroMap != null)
     {
         if (MacrosMap != null)
         {
             SupportClass.PutAll(MacrosMap, macroMap);
         }
         else
         {
             MacrosMap = (StringMap)macroMap;
         }
     }
 }