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