-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScriptX.Variable.pas
97 lines (80 loc) · 2.06 KB
/
ScriptX.Variable.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
unit ScriptX.Variable;
interface
uses System.Rtti, ScriptX.Intf, ScriptX.Common;
type
TScriptXVariable = class(TInterfacedObject,IScriptXVariable)
private
FName : string;
FOnGetValue : TOnGetValue;
FValue : TValue;
FType : TVariableType;
FClassName : string;
public
class function New : IScriptXVariable;
function GetName: AnsiString;
function GetValue: TValue;
function GetVariableType: TVariableType;
function GetClassName: string;
function SetName(AName: AnsiString): IScriptXVariable;
function SetOnGetValue(AProc: TOnGetValue): IScriptXVariable;
function GetOnGetValue : TOnGetValue;
function SetValue(AValue: TValue): IScriptXVariable;
function SetVariableType(AType: TVariableType): IScriptXVariable;
function SetClassName(AClassName: string): IScriptXVariable;
end;
implementation
{ TScriptXVariable }
function TScriptXVariable.GetClassName: string;
begin
Result := FClassName;
end;
function TScriptXVariable.GetName: AnsiString;
begin
Result := FName;
end;
function TScriptXVariable.GetOnGetValue: TOnGetValue;
begin
Result := FOnGetValue;
end;
function TScriptXVariable.GetValue: TValue;
begin
if Assigned(FOnGetValue) then
FOnGetValue(Result)
else
Result := FValue;
end;
function TScriptXVariable.GetVariableType: TVariableType;
begin
Result := FType;
end;
class function TScriptXVariable.New: IScriptXVariable;
begin
Result := Create;
end;
function TScriptXVariable.SetClassName(AClassName: string): IScriptXVariable;
begin
FClassName := AClassName;
Result := Self;
end;
function TScriptXVariable.SetName(AName: AnsiString): IScriptXVariable;
begin
FName := AName;
Result := Self;
end;
function TScriptXVariable.SetOnGetValue(AProc: TOnGetValue): IScriptXVariable;
begin
FOnGetValue := AProc;
Result := Self;
end;
function TScriptXVariable.SetValue(AValue: TValue): IScriptXVariable;
begin
FValue := AValue;
Result := Self;
end;
function TScriptXVariable.SetVariableType(
AType: TVariableType): IScriptXVariable;
begin
FType := AType;
Result := Self;
end;
end.