comparison dwt/internal/cocoa/NSCompoundPredicate.d @ 0:380af2bdd8e5

Upload of whole dwt tree
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sat, 09 Aug 2008 17:00:02 +0200
parents
children 8b48be5454ce
comparison
equal deleted inserted replaced
-1:000000000000 0:380af2bdd8e5
1 /*******************************************************************************
2 * Copyright (c) 2007 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * IBM Corporation - initial API and implementation
11 *
12 * Port to the D Programming language:
13 * Jacob Carlborg <jacob.carlborg@gmail.com>
14 *******************************************************************************/
15 module dwt.internal.cocoa.NSCompoundPredicate;
16
17 import dwt.internal.cocoa.id;
18 import dwt.internal.cocoa.NSArray;
19 import dwt.internal.cocoa.NSPredicate;
20 import dwt.internal.cocoa.OS;
21 import objc = dwt.internal.objc.runtime;
22
23 public class NSCompoundPredicate : NSPredicate
24 {
25
26 public this ()
27 {
28 super();
29 }
30
31 public this (objc.id id)
32 {
33 super(id);
34 }
35
36 public static NSPredicate andPredicateWithSubpredicates (NSArray subpredicates)
37 {
38 objc.id result = OS.objc_msgSend(OS.class_NSCompoundPredicate, OS.sel_andPredicateWithSubpredicates_1,
39 subpredicates !is null ? subpredicates.id : null);
40 return result !is null ? new NSPredicate(result) : null;
41 }
42
43 public objc.id compoundPredicateType ()
44 {
45 return OS.objc_msgSend(this.id, OS.sel_compoundPredicateType);
46 }
47
48 public id initWithType (objc.id type, NSArray subpredicates)
49 {
50 objc.id result = OS.objc_msgSend(this.id, OS.sel_initWithType_1subpredicates_1, type, subpredicates !is null ? subpredicates.id : null);
51 return result !is null ? new id(result) : null;
52 }
53
54 public static NSPredicate notPredicateWithSubpredicate (NSPredicate predicate)
55 {
56 objc.id result = OS.objc_msgSend(OS.class_NSCompoundPredicate, OS.sel_notPredicateWithSubpredicate_1,
57 predicate !is null ? predicate.id : null);
58 return result !is null ? new NSPredicate(result) : null;
59 }
60
61 public static NSPredicate orPredicateWithSubpredicates (NSArray subpredicates)
62 {
63 objc.id result = OS.objc_msgSend(OS.class_NSCompoundPredicate, OS.sel_orPredicateWithSubpredicates_1,
64 subpredicates !is null ? subpredicates.id : null);
65 return result !is null ? new NSPredicate(result) : null;
66 }
67
68 public NSArray subpredicates ()
69 {
70 objc.id result = OS.objc_msgSend(this.id, OS.sel_subpredicates);
71 return result !is null ? new NSArray(result) : null;
72 }
73
74 }