示例#1
0
 public void Create(IntPtr entityPointer)
 {
     Add(entityFactory.Create(entityPointer));
 }
示例#2
0
 public ICheckpoint Create(ICore core, IntPtr entityPointer)
 {
     return(MockDecorator <TEntity, ICheckpoint> .Create((TEntity)checkpointFactory.Create(core, entityPointer),
                                                         new MockCheckpoint(core, entityPointer)));
 }
 public IColShape Create(ICore core, IntPtr entityPointer)
 {
     return(MockDecorator <TEntity, IColShape> .Create((TEntity)colShapeFactory.Create(core, entityPointer),
                                                       new MockColShape(core, entityPointer)));
 }
示例#4
0
 public IBlip Create(ICore core, IntPtr entityPointer)
 {
     return(MockDecorator <TEntity, IBlip> .Create((TEntity)blipFactory.Create(core, entityPointer),
                                                   new MockBlip(core, entityPointer)));
 }
示例#5
0
 public IVoiceChannel Create(IntPtr entityPointer)
 {
     return(MockDecorator <TEntity, IVoiceChannel> .Create((TEntity)voiceChannelFactory.Create(entityPointer),
                                                           new MockVoiceChannel(entityPointer)));
 }
示例#6
0
 public void Create(JSObject entityPointer)
 {
     Add(entityFactory.Create(entityPointer));
 }