-
Notifications
You must be signed in to change notification settings - Fork 42
/
FluentQuery.Components.MethodFactories.pas
45 lines (39 loc) · 1.56 KB
/
FluentQuery.Components.MethodFactories.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
{****************************************************}
{ }
{ FluentQuery }
{ }
{ Copyright (C) 2013 Malcolm Groves }
{ }
{ http://www.malcolmgroves.com }
{ }
{****************************************************}
{ }
{ This Source Code Form is subject to the terms of }
{ the Mozilla Public License, v. 2.0. If a copy of }
{ the MPL was not distributed with this file, You }
{ can obtain one at }
{ }
{ http://mozilla.org/MPL/2.0/ }
{ }
{****************************************************}
unit FluentQuery.Components.MethodFactories;
interface
uses
FluentQuery.GenericObjects.MethodFactories, System.SysUtils, System.Classes;
type
TComponentMethodFactory<T : TComponent> = class(TGenericObjectMethodFactory<T>)
public
// predicates
class function TagEquals(TagValue : NativeInt) : TPredicate<T>;
end;
implementation
{ TComponentMethodFactory<T> }
class function TComponentMethodFactory<T>.TagEquals(
TagValue: NativeInt): TPredicate<T>;
begin
Result := function (Value : T): boolean
begin
Result := Value.Tag = TagValue;
end;
end;
end.