![]() |
Verschachtelte Datenklassen readonly
Hallo zusammen,
ich habe ein Design-Problem. Extrem vereinfachtes Beispiel: Ich habe eine Datenklasse, die hat, weils so schön ist, auch ein interface:
Delphi-Quellcode:
Nun möchte ich die Daten weitergeben, der Empfänger soll da nichts ändern können. Ich mache daher ein Read-Only-Interface.ICoreData = interface function GetA(): Integer; function GetB(): Double; procedure SetA(const p_Value: Integer); procedure SetB(const p_Value: Double); property A: Integer read GetA write SetA; property B: Double read GetB write SetB; end; TCoreData = class(TInterfacedObject, ICoreData) strict private FA: Integer; FB: Double; function GetA(): Integer; function GetB(): Double; procedure SetA(const p_Value: Integer); procedure SetB(const p_Value: Double); public property A: Integer read GetA write SetA; property B: Double read GetB write SetB; end;
Delphi-Quellcode:
Soweit so gut.
ICoreDataReadOnly = interface
function GetA(): Integer; function GetB(): Double; property A: Integer read GetA; property B: Double read GetB; end; TCoreData = class(TInterfacedObject, ICoreData, ICoreDataReadOnly) Nun aber sollen die Daten mit anderen zusammen gepackt werden. Also:
Delphi-Quellcode:
Das geht auch noch, aber beim Read-Only stehe ich an. Ich hätte das gerne so:
IKomplexData = interface
function GetC(): ICoreData; function GetD(): string ; procedure SetC(const p_Value: ICoreData); procedure SetD(const p_Value: string ); property C: ICoreData read GetC write SetC; property D: string read GetD write SetD; end;
Delphi-Quellcode:
Dann hat das property C zwei verschiedene Typen: einmal ICoreData und einmal ICoreDataReadOnly. Man kann doch aber nur eine implementieren. Ein overload z.B. gibts bei properties ja nicht.IKomplexDataReadOnly = interface ['{059FFBF5-789F-4DFB-9B3C-3F549B4BB0A9}'] function GetC(): ICoreDataReadOnly; function GetD(): string ; property C: ICoreDataReadOnly read GetC; property D: string read GetD; end; Irgendwelche Ideen? |
AW: Verschachtelte Datenklassen readonly
Für sowas gibt es die Method Resolution Clause. Damit kann man die implementierende Methode anders nennen als in dem Interface.
Delphi-Quellcode:
type
TKomplexData = class(TInterfacedObject, IKomplexDataReadOnly, IKomplexData) function IKomplexDataReadOnly.GetC = GetCReadOnly; private function GetCReadOnly: ICoreDataReadOnly; function GetC: ICoreData; function GetD: string; procedure SetC(const p_Value: ICoreData); procedure SetD(const p_Value: string ); end; |
AW: Verschachtelte Datenklassen readonly
Ah, ich erinnere mich vage. Das stand doch auch schon in einem Buch ("COM/DCOM mit Delphi"?). Hatte ich vergessen.
Danke. |
AW: Verschachtelte Datenklassen readonly
|
AW: Verschachtelte Datenklassen readonly
Habe es ausprobiert. Funktioniert (nach der Beseitigung etlicher Bretter vor meinem Kopf :-D)
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 10:22 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz