3 instantiations of FakeModelItemImpl
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
134this.content = new FakeModelItemImpl(manager, this.GetType(), this, null);
System.Activities.Presentation\System\Activities\Presentation\Model\FakeModelPropertyImpl.cs (1)
116wrappedValue = new FakeModelItemImpl(this.parentModelTreeItem.ModelTreeManager, this.PropertyType, value, (FakeModelItemImpl)this.Parent);
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
2020.Select<Variable, ModelItem>(entry => new FakeModelItemImpl(treeManager, typeof(Variable), entry, null)));
14 references to FakeModelItemImpl
System.Activities.Presentation (14)
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (2)
67FakeModelItemImpl content; 140this.content = (FakeModelItemImpl)value;
System.Activities.Presentation\System\Activities\Presentation\Model\FakeModelItemImpl.cs (1)
16public FakeModelItemImpl(ModelTreeManager modelTreeManager, Type itemType, object instance, FakeModelItemImpl parent)
System.Activities.Presentation\System\Activities\Presentation\Model\FakeModelPropertyImpl.cs (8)
20FakeModelItemImpl temporaryValue; 23public FakeModelPropertyImpl(FakeModelItemImpl parent, PropertyDescriptor propertyDescriptor) 111FakeModelItemImpl WrapValue(object value) 113FakeModelItemImpl wrappedValue = value as FakeModelItemImpl; 116wrappedValue = new FakeModelItemImpl(this.parentModelTreeItem.ModelTreeManager, this.PropertyType, value, (FakeModelItemImpl)this.Parent); 121FakeModelItemImpl StoreValue(object value) 123FakeModelItemImpl wrappedValue = WrapValue(value);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemExtensions.cs (1)
704if (!IsRootedAt(itemToFocus, modelTreeItem.ModelTreeManager.Root) && !(itemToFocus is FakeModelItemImpl))
System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyCollectionImpl.cs (2)
27createFakeModelProperties = this.parent is FakeModelItemImpl; 65(ModelProperty)(new FakeModelPropertyImpl((FakeModelItemImpl)parent, propertyDescriptor)) :