예제 #1
0
 public void registerCreator(Type type, creator.ICanCreate creator, bool replace)
 {
     if (!this.isCreating(type) || replace)
     {
         this.creators[type] = creator;
     }
 }
예제 #2
0
 public void registerCreator(Type type, creator.ICanCreate creator)
 {
     this.creators[type] = creator;
 }