Ich habe meinen Vorschlag nochmal überarbeitet. Das IReferenz Interface wird eigentlich nur für die Method Resolution Clause und in GetReferenz verwendet und muss somit gar nicht öffentlich sein.
Mit diesem Ansatz muss also nur die Implementierung entsprechend formuliert werden. Zusätzliche Hilfsklassen sind nicht notwendig.
Delphi-Quellcode:
type
TTyp = (Kreis, Quadrat);
type
IElement = interface
function GetFarbe: TColor;
function GetGroesse: Double;
function GetTyp: TTyp;
property Typ: TTyp read GetTyp;
property Farbe: TColor read GetFarbe;
property Groesse: Double read GetGroesse;
end;
IMonster = interface
function GetElement: IElement;
function GetReferenz: IElement;
property Element: IElement read GetElement;
property Referenz: IElement read GetReferenz;
end;
Delphi-Quellcode:
type
IReferenz = interface(IElement)
end;
TMonster = class(TInterfacedObject, IMonster, IElement, IReferenz)
function IElement.GetFarbe = GetElementFarbe;
function IElement.GetGroesse = GetElementGroesse;
function IElement.GetTyp = GetElementTyp;
function IReferenz.GetFarbe = GetReferenzFarbe;
function IReferenz.GetGroesse = GetReferenzGroesse;
function IReferenz.GetTyp = GetReferenzTyp;
private
function GetElement: IElement;
function GetReferenz: IElement;
function GetElementFarbe: TColor;
function GetElementGroesse: Double;
function GetElementTyp: TTyp;
function GetReferenzFarbe: TColor;
function GetReferenzGroesse: Double;
function GetReferenzTyp: TTyp;
end;
{ TMonster }
function TMonster.GetElement: IElement;
begin
Result := Self as IElement;
end;
function TMonster.GetReferenz: IElement;
begin
Result := Self as IReferenz;
end;