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