Skip to main content
summaryrefslogtreecommitdiffstats
blob: b4765d099c5b126615fdda77d6c97a9ea1d51561 (plain) (blame)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
/*******************************************************************************
 * Copyright (c) 2016 Oracle. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0, which accompanies this distribution
 * and is available at http://www.eclipse.org/legal/epl-v10.html.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.common.utility.internal.model.value;

import java.util.Collection;
import org.eclipse.jpt.common.utility.Association;
import org.eclipse.jpt.common.utility.closure.BiClosure;
import org.eclipse.jpt.common.utility.closure.Closure;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
import org.eclipse.jpt.common.utility.internal.SimpleAssociation;
import org.eclipse.jpt.common.utility.internal.closure.ClosureTools;
import org.eclipse.jpt.common.utility.internal.predicate.PredicateTools;
import org.eclipse.jpt.common.utility.internal.transformer.TransformerAdapter;
import org.eclipse.jpt.common.utility.internal.transformer.TransformerTools;
import org.eclipse.jpt.common.utility.model.Model;
import org.eclipse.jpt.common.utility.model.value.CollectionValueModel;
import org.eclipse.jpt.common.utility.model.value.ModifiablePropertyValueModel;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.common.utility.predicate.Predicate;
import org.eclipse.jpt.common.utility.transformer.Transformer;

/**
 * {@link PropertyValueModel Property value model} utility methods.
 */
public final class PropertyValueModelTools {

	// ********** Boolean adapters **********

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * is <code>null</code>.
	 * 
	 * @see #valueIsNotNull(PropertyValueModel)
	 */
	public static PropertyValueModel<Boolean> valueIsNull(PropertyValueModel<?> propertyModel) {
		return valueAffirms_(propertyModel, PredicateTools.isNull());
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * is <em>not</em> <code>null</code>.
	 * 
	 * @see #valueIsNull(PropertyValueModel)
	 */
	public static PropertyValueModel<Boolean> valueIsNotNull(PropertyValueModel<?> propertyModel) {
		return valueAffirms_(propertyModel, PredicateTools.isNotNull());
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * equals the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will be <em>true</em> if the specified value is
	 * also <code>null</code>.
	 * 
	 * @see #valueNotEquals(PropertyValueModel, Object)
	 * @see #valueEquals_(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueEquals(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms_(propertyModel, PredicateTools.isEqual(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * equals the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will also be a <code>null</code>
	 * {@link Boolean}.
	 * 
	 * @see #valueNotEquals_(PropertyValueModel, Object)
	 * @see #valueEquals(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueEquals_(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms(propertyModel, PredicateTools.isEqual(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * does <em>not</em> equal the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will be <em>false</em> if the specified value is
	 * also <code>null</code>.
	 * 
	 * @see #valueNotEquals_(PropertyValueModel, Object)
	 * @see #valueEquals(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueNotEquals(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms_(propertyModel, PredicateTools.isNotEqual(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * does <em>not</em> equal the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will also be a <code>null</code>
	 * {@link Boolean}.
	 * 
	 * @see #valueNotEquals(PropertyValueModel, Object)
	 * @see #valueEquals_(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueNotEquals_(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms(propertyModel, PredicateTools.isNotEqual(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * is <em>identical</em> to the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will be <em>true</em> if the specified value is
	 * also <code>null</code>.
	 * 
	 * @see #valueIsIdentical_(PropertyValueModel, Object)
	 * @see #valueIsNotIdentical(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueIsIdentical(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms_(propertyModel, PredicateTools.isIdentical(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * is <em>identical</em> to the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will also be a <code>null</code>
	 * {@link Boolean}.
	 * 
	 * @see #valueIsIdentical(PropertyValueModel, Object)
	 * @see #valueIsNotIdentical_(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueIsIdentical_(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms(propertyModel, PredicateTools.isIdentical(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * is <em>not identical</em> to the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will be <em>false</em> if the specified value is
	 * also <code>null</code>.
	 * 
	 * @see #valueIsNotIdentical_(PropertyValueModel, Object)
	 * @see #valueIsIdentical(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueIsNotIdentical(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms_(propertyModel, PredicateTools.isNotIdentical(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * is <em>not identical</em> to the specified value.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will also be a <code>null</code>
	 * {@link Boolean}.
	 * 
	 * @see #valueIsNotIdentical(PropertyValueModel, Object)
	 * @see #valueIsIdentical_(PropertyValueModel, Object)
	 */
	public static PropertyValueModel<Boolean> valueIsNotIdentical_(PropertyValueModel<?> propertyModel, Object value) {
		return valueAffirms(propertyModel, PredicateTools.isNotIdentical(value));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * affirms the specified predicate.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will also be a <code>null</code>
	 * {@link Boolean}; and the value will <em>never</em> be passed to the specified
	 * predicate.
	 * 
	 * @see #valueAffirms_(PropertyValueModel, Predicate)
	 * @see #valueAffirms(PropertyValueModel, Predicate, boolean)
	 * @see #valueAffirms(PropertyValueModel, Predicate, Boolean)
	 */
	public static <V> PropertyValueModel<Boolean> valueAffirms(PropertyValueModel<? extends V> propertyModel, Predicate<? super V> predicate) {
		return valueAffirms(propertyModel, predicate, null);
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * affirms the specified predicate.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will be the specified null result;
	 * and the value will <em>never</em> be passed to the specified predicate.
	 * 
	 * @see #valueAffirms(PropertyValueModel, Predicate)
	 * @see #valueAffirms_(PropertyValueModel, Predicate)
	 * @see #valueAffirms(PropertyValueModel, Predicate, Boolean)
	 */
	public static <V> PropertyValueModel<Boolean> valueAffirms(
			PropertyValueModel<? extends V> propertyModel,
			Predicate<? super V> predicate,
			boolean nullResult
	) {
		return valueAffirms(propertyModel, predicate, Boolean.valueOf(nullResult));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * affirms the specified predicate.
	 * <p>
	 * <strong>NB:</strong> If specified model's value is <code>null</code>,
	 * the returned model's value will be the specified null result;
	 * and the value will <em>never</em> be passed to the specified predicate.
	 * 
	 * @see #valueAffirms(PropertyValueModel, Predicate)
	 * @see #valueAffirms_(PropertyValueModel, Predicate)
	 * @see #valueAffirms(PropertyValueModel, Predicate, boolean)
	 */
	public static <V> PropertyValueModel<Boolean> valueAffirms(
			PropertyValueModel<? extends V> propertyModel,
			Predicate<? super V> predicate,
			Boolean nullResult
	) {
		return transform_(propertyModel, TransformerTools.adapt(predicate, nullResult));
	}

	/**
	 * Construct a property value model adapter for the specified
	 * property value model that returns whether the property's value
	 * affirms the specified predicate.
	 * <p>
	 * <strong>NB:</strong> The specified predicate must be able to
	 * handle a <code>null</code> variable.
	 * 
	 * @see #valueAffirms(PropertyValueModel, Predicate)
	 * @see #valueAffirms(PropertyValueModel, Predicate, boolean)
	 * @see #valueAffirms(PropertyValueModel, Predicate, Boolean)
	 */
	public static <V> PropertyValueModel<Boolean> valueAffirms_(PropertyValueModel<? extends V> propertyModel, Predicate<? super V> predicate) {
		return transform_(propertyModel, TransformerTools.adapt(predicate));
	}


	// ********** Composite boolean adapters **********

	/**
	 * Construct a boolean property value model that is a composite AND of the
	 * specified boolean property value models; i.e. the model's value is {@link Boolean#TRUE}
	 * if all the contained models' values are {@link Boolean#TRUE},
	 * otherwise its value is {@link Boolean#FALSE}.
	 * The model's default value, when it contains no nested models, is {@link Boolean#TRUE}.
	 */
	@SafeVarargs
	public static PropertyValueModel<Boolean> and(PropertyValueModel<Boolean>... models) {
		return CollectionValueModelTools.compositePropertyValueModel(AND_TRANSFORMER, models);
	}

	/**
	 * Construct a boolean property value model that is a composite AND of the
	 * specified boolean property value models; i.e. the model's value is {@link Boolean#TRUE}
	 * if all the contained models' values are {@link Boolean#TRUE},
	 * otherwise its value is {@link Boolean#FALSE}.
	 * The model's default value, when it contains no nested models, is {@link Boolean#TRUE}.
	 */
	public static PropertyValueModel<Boolean> and(Collection<? extends PropertyValueModel<Boolean>> models) {
		return CollectionValueModelTools.compositePropertyValueModel(models, AND_TRANSFORMER);
	}

	/**
	 * @see AndTransformer
	 */
	public static final Transformer<Collection<Boolean>, Boolean> AND_TRANSFORMER = new AndTransformer();

	/**
	 * A transformer that transforms a collection of {@link Boolean}s into a single
	 * {@link Boolean} by ANDing them together. Its default value is {@link Boolean#TRUE}.
	 * @see CollectionValueModelTools#and(CollectionValueModel)
	 */
	public static final class AndTransformer
		extends TransformerAdapter<Collection<Boolean>, Boolean>
	{
		@Override
		public Boolean transform(Collection<Boolean> booleans) {
			for (Boolean b : booleans) {
				if ( ! b.booleanValue()) {
					return Boolean.FALSE;
				}
			}
			return Boolean.TRUE;
		}
	}

	/**
	 * Construct a boolean property value model that is a composite OR of the
	 * specified boolean property value models; i.e. the model's value is {@link Boolean#FALSE}
	 * if all the contained models' values are {@link Boolean#FALSE},
	 * otherwise its value is {@link Boolean#TRUE}.
	 * The model's default value, when it contains no nested models, is {@link Boolean#FALSE}.
	 */
	@SafeVarargs
	public static PropertyValueModel<Boolean> or(PropertyValueModel<Boolean>... models) {
		return CollectionValueModelTools.compositePropertyValueModel(OR_TRANSFORMER, models);
	}

	/**
	 * Construct a boolean property value model that is a composite OR of the
	 * specified boolean property value models; i.e. the model's value is {@link Boolean#FALSE}
	 * if all the contained models' values are {@link Boolean#FALSE},
	 * otherwise its value is {@link Boolean#TRUE}.
	 * The model's default value, when it contains no nested models, is {@link Boolean#FALSE}.
	 */
	public static PropertyValueModel<Boolean> or(Collection<? extends PropertyValueModel<Boolean>> models) {
		return CollectionValueModelTools.compositePropertyValueModel(models, OR_TRANSFORMER);
	}

	/**
	 * @see OrTransformer
	 */
	public static final Transformer<Collection<Boolean>, Boolean> OR_TRANSFORMER = new OrTransformer();

	/**
	 * A transformer that transforms a collection of {@link Boolean}s into a single
	 * {@link Boolean} by ORing them together. Its default value is {@link Boolean#FALSE}.
	 * @see CollectionValueModelTools#or(CollectionValueModel)
	 */
	public static final class OrTransformer
		extends TransformerAdapter<Collection<Boolean>, Boolean>
	{
		@Override
		public Boolean transform(Collection<Boolean> booleans) {
			for (Boolean b : booleans) {
				if (b.booleanValue()) {
					return Boolean.TRUE;
				}
			}
			return Boolean.FALSE;
		}
	}


	// ********** filtering wrappers **********

	/**
	 * Construct a property value model that filters the specified
	 * property value model to return the wrapped value only if it is an instance
	 * of the specified class. If the wrapped value is <em>not</em> an instance
	 * of the specified class, it will return <code>null</code>.
	 * <p>
	 * <strong>NB:</strong> If the wrapped value is <code>null</code>,
	 * the model returns a <code>null</code> value.
	 * 
	 * @see #filter(PropertyValueModel, Class, Object)
	 * @see PredicateTools#instanceOf(Class)
	 */
	public static <V> PropertyValueModel<V> filter(PropertyValueModel<?> propertyModel, Class<V> clazz) {
		return filter(propertyModel, clazz, null);
	}

	/**
	 * Construct a property value model that filters the specified
	 * property value model to return the wrapped value only if it is an instance
	 * of the specified class. If the wrapped value is <em>not</em> an instance
	 * of the specified class, it will return the specified default value.
	 * <p>
	 * <strong>NB:</strong> If the wrapped value is <code>null</code>,
	 * the model returns a <code>null</code> value.
	 * 
	 * @see #filter(PropertyValueModel, Class)
	 * @see PredicateTools#instanceOf(Class)
	 */
	public static <V> PropertyValueModel<V> filter(
			PropertyValueModel<?> propertyModel,
			Class<V> clazz,
			V defaultValue
	) {
		return transform(propertyModel, TransformerTools.cast(TransformerTools.filteringTransformer(PredicateTools.instanceOf(clazz), defaultValue)));
	}

	/**
	 * Construct a property value model that filters the specified
	 * property value model to return the wrapped value only if it is an instance
	 * of the specified class. If the wrapped value is <em>not</em> an instance
	 * of the specified class, it will return the specified default value.
	 * <p>
	 * <strong>NB:</strong> If the wrapped value is <code>null</code>,
	 * the model returns the specified default value.
	 * 
	 * @see #filter(PropertyValueModel, Class)
	 * @see PredicateTools#instanceOf(Class)
	 */
	public static <V> PropertyValueModel<V> filter_(
			PropertyValueModel<?> propertyModel,
			Class<V> clazz,
			V defaultValue
	) {
		return transform_(propertyModel, TransformerTools.cast(TransformerTools.filteringTransformer(PredicateTools.instanceOf(clazz), defaultValue)));
	}

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and filters its value with the specified
	 * filter. If the wrapped value passes the filter,
	 * the model simply returns it; otherwise it returns <code>null</code>.
	 * <p>
	 * <strong>NB:</strong> The specified filter will <em>never</em> be passed
	 * a <code>null</code> variable.
	 * Instead, if the wrapped value is <code>null</code>, the model returns a
	 * <code>null</code> value.
	 * 
	 * @see #filter(PropertyValueModel, Predicate, Object)
	 * @see #filter_(PropertyValueModel, Predicate)
	 * @see PluggablePropertyValueModel
	 */
	public static <V> PropertyValueModel<V> filter(PropertyValueModel<? extends V> propertyModel, Predicate<? super V> filter) {
		return filter(propertyModel, filter, null);
	}

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and filters its value with the specified
	 * filter. If the wrapped value passes the filter,
	 * the model simply returns it; otherwise it returns <code>null</code>.
	 * <p>
	 * <strong>NB:</strong> The specified filter must be able to handle
	 * a <code>null</code> variable.
	 * 
	 * @see #filter(PropertyValueModel, Predicate)
	 * @see #filter_(PropertyValueModel, Predicate, Object)
	 * @see PluggablePropertyValueModel
	 */
	public static <V> PropertyValueModel<V> filter_(PropertyValueModel<? extends V> propertyModel, Predicate<? super V> filter) {
		return filter_(propertyModel, filter, null);
	}

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and filters its value with the specified
	 * filter. If the wrapped value passes the filter,
	 * the model simply returns it; otherwise it returns the specified
	 * default value.
	 * <p>
	 * <strong>NB:</strong> The specified filter will <em>never</em> be passed
	 * a <code>null</code> variable.
	 * Instead, if the wrapped value is <code>null</code>, the model returns the specified
	 * default value.
	 * 
	 * @see #filter(PropertyValueModel, Predicate)
	 * @see #filter_(PropertyValueModel, Predicate, Object)
	 * @see PluggablePropertyValueModel
	 */
	public static <V> PropertyValueModel<V> filter(
			PropertyValueModel<? extends V> propertyModel,
			Predicate<? super V> filter,
			V defaultValue
	) {
		return filter_(propertyModel, PredicateTools.nullCheck(filter), defaultValue);
	}

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and filters its value with the specified
	 * filter. If the wrapped value passes the filter,
	 * the model simply returns it; otherwise it returns the specified
	 * default value.
	 * <p>
	 * <strong>NB:</strong> The specified filter must be able to handle
	 * a <code>null</code> variable.
	 * 
	 * @see #filter(PropertyValueModel, Predicate, Object)
	 * @see #filter_(PropertyValueModel, Predicate)
	 * @see PluggablePropertyValueModel
	 */
	public static <V> PropertyValueModel<V> filter_(
			PropertyValueModel<? extends V> propertyModel,
			Predicate<? super V> filter,
			V defaultValue
	) {
		return transform_(propertyModel, TransformerTools.filteringTransformer(filter, defaultValue));
	}


	// ********** buffered wrapper **********

	/**
	 * Construct a trigger that can be used to accept or reset one or more
	 * buffered property value models (or any other listeners).
	 * 
	 * @see #buffer(ModifiablePropertyValueModel, BufferedPropertyValueModelAdapter.Trigger)
	 */
	public static BufferedPropertyValueModelAdapter.Trigger bufferedPropertyValueModelAdapterTrigger() {
		return new BufferedPropertyValueModelAdapter.Trigger();
	}

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and buffers its value using the specified trigger.
	 * Return an association of the buffered model and another boolean model
	 * that indicates whether the buffered model is actually buffering a value.
	 * 
	 * @see BufferedPropertyValueModelAdapter
	 * @see #bufferedPropertyValueModelAdapterTrigger()
	 * @see PluggablePropertyValueModel
	 */
	public static <V> Association<ModifiablePropertyValueModel<V>, PropertyValueModel<Boolean>> buffer(
			ModifiablePropertyValueModel<V> propertyModel,
			BufferedPropertyValueModelAdapter.Trigger trigger
	) {
		BufferedPropertyValueModelAdapter.Factory<V> factory = new BufferedPropertyValueModelAdapter.Factory<>(propertyModel, trigger);
		ModifiablePropertyValueModel<V> model = modifiablePropertyValueModel(factory);
		PropertyValueModel<Boolean> bufferingModel = factory.getBufferingModel();
		return new SimpleAssociation<>(model, bufferingModel);
	}


	// ********** null check wrapper **********

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and returns the specified null value
	 * if the specified model's value is <code>null</code>.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V> PropertyValueModel<V> nullCheck(PropertyValueModel<? extends V> propertyModel, V nullValue) {
		return transform_(propertyModel, TransformerTools.nullCheck(nullValue));
	}


	// ********** transforming wrappers **********

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and transforms its value with the specified
	 * transformer.
	 * <p>
	 * <strong>NB:</strong> The specified transformer will <em>never</em> be passed a <code>null</code> input.
	 * Instead, a <code>null</code> input will be transformed into a <code>null</code> output.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> PropertyValueModel<V2> transform(
			PropertyValueModel<? extends V1> propertyModel,
			Transformer<? super V1, ? extends V2> transformer
	) {
		return propertyValueModel(pluggablePropertyValueModelAdapterFactory(propertyModel, transformer));
	}

	/**
	 * Construct a property value model that wraps the specified
	 * property value model and transforms its value with the specified
	 * transformer.
	 * <p>
	 * <strong>NB:</strong> The specified transformer must be able to handle a <code>null</code> input.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> PropertyValueModel<V2> transform_(
			PropertyValueModel<? extends V1> propertyModel,
			Transformer<? super V1, ? extends V2> transformer
	) {
		return propertyValueModel(pluggablePropertyValueModelAdapterFactory_(propertyModel, transformer));
	}

	/**
	 * Construct a modifiable property value model that wraps the specified
	 * property value model and transforms its value with the specified
	 * transformers.
	 * <p>
	 * <strong>NB:</strong> The specified transformers will <em>never</em> be passed a <code>null</code> input.
	 * Instead, a <code>null</code> input will be transformed into a <code>null</code> output.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> ModifiablePropertyValueModel<V2> transform(
			ModifiablePropertyValueModel<V1> propertyModel,
			Transformer<? super V1, ? extends V2> getTransformer,
			Transformer<? super V2, ? extends V1> setTransformer
	) {
		return transform_(propertyModel, TransformerTools.nullCheck(getTransformer), TransformerTools.nullCheck(setTransformer));
	}

	/**
	 * Construct a modifiable property value model that wraps the specified
	 * property value model and transforms its value with the specified
	 * transformers.
	 * <p>
	 * <strong>NB:</strong> The specified transformers must be able to handle a <code>null</code> input.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> ModifiablePropertyValueModel<V2> transform_(
			ModifiablePropertyValueModel<V1> propertyModel,
			Transformer<? super V1, ? extends V2> getTransformer,
			Transformer<? super V2, ? extends V1> setTransformer
	) {
		return transform_(propertyModel, getTransformer, setTransformerClosureAdapter(propertyModel, setTransformer));
	}

	/**
	 * Construct a modifiable property value model that wraps the specified
	 * property value model and transforms its value with the specified
	 * transformer. The specified closure is invoked when the model's value is set.
	 * <p>
	 * <strong>NB:</strong> The specified transformer will <em>never</em> be passed a <code>null</code> input.
	 * Instead, a <code>null</code> input will be transformed into a <code>null</code> output.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> ModifiablePropertyValueModel<V2> transform(
			PropertyValueModel<? extends V1> propertyModel,
			Transformer<? super V1, ? extends V2> transformer,
			Closure<? super V2> setValueClosure
	) {
		return pluggableModifiablePropertyValueModel(pluggablePropertyValueModelAdapterFactory(propertyModel, transformer), setValueClosure);
	}

	/**
	 * Construct a modifiable property value model that wraps the specified
	 * property value model and transforms its value with the specified
	 * transformer. The specified closure is invoked when the model's value is set.
	 * <p>
	 * <strong>NB:</strong> The specified transformer must be able to handle a <code>null</code> input.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> ModifiablePropertyValueModel<V2> transform_(
			PropertyValueModel<? extends V1> propertyModel,
			Transformer<? super V1, ? extends V2> transformer,
			Closure<? super V2> setValueClosure
	) {
		return pluggableModifiablePropertyValueModel(pluggablePropertyValueModelAdapterFactory_(propertyModel, transformer), setValueClosure);
	}

	/**
	 * Construct a pluggable property value model adapter factory for the specified
	 * property value model and transformer.
	 * <p>
	 * <strong>NB:</strong> The specified transformer will <em>never</em> be passed a <code>null</code> input.
	 * Instead, a <code>null</code> input will be transformed into a <code>null</code> output.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> PluggablePropertyValueModel.Adapter.Factory<V2> pluggablePropertyValueModelAdapterFactory(
			PropertyValueModel<? extends V1> propertyModel,
			Transformer<? super V1, ? extends V2> transformer
	) {
		return pluggablePropertyValueModelAdapterFactory_(propertyModel, TransformerTools.nullCheck(transformer));
	}

	/**
	 * Construct a pluggable property value model adapter factory for the specified
	 * property value model and transformer.
	 * <p>
	 * <strong>NB:</strong> The specified transformer must be able to handle a <code>null</code> input.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V1, V2> PluggablePropertyValueModel.Adapter.Factory<V2> pluggablePropertyValueModelAdapterFactory_(
			PropertyValueModel<? extends V1> propertyModel,
			Transformer<? super V1, ? extends V2> transformer
	) {
		return new PropertyPluggablePropertyValueModelAdapter.Factory<>(propertyModel, transformer);
	}


	// ********** misc **********

	/**
	 * Construct a "set" closure that wraps the specified modifiable property value model and
	 * uses the specified "set" transformer to transform the incoming value before
	 * forwarding it to the model.
	 */
	public static <V1, V2> Closure<V2> setTransformerClosureAdapter(ModifiablePropertyValueModel<V1> propertyModel, Transformer<? super V2, ? extends V1> setTransformer) {
		return new SetTransformerClosureAdapter<>(propertyModel, setTransformer);
	}

	/**
	 * "Set" closure that wraps a modifiable property value model and
	 * uses a "set" transformer to transform the incoming value before
	 * forwarding it to the model.
	 */
	public static final class SetTransformerClosureAdapter<V1, V2>
		implements Closure<V2>
	{
		private final ModifiablePropertyValueModel<V1> propertyModel;
		private final Transformer<? super V2, ? extends V1> setTransformer;
		
		public SetTransformerClosureAdapter(ModifiablePropertyValueModel<V1> propertyModel, Transformer<? super V2, ? extends V1> setTransformer) {
			super();
			if (propertyModel == null) {
				throw new NullPointerException();
			}
			this.propertyModel = propertyModel;
			if (setTransformer == null) {
				throw new NullPointerException();
			}
			this.setTransformer = setTransformer;
		}

		public void execute(V2 value) {
			this.propertyModel.setValue(this.setTransformer.transform(value));
		}

		@Override
		public String toString() {
			return ObjectTools.toString(this, this.setTransformer);
		}
	}

	/**
	 * Construct a "set" closure that wraps another "set" closure and
	 * provides a hook to do nothing if the target object is <code>null</code>.
	 */
	public static <A1, A2> BiClosure<A1, A2> nullCheckSetClosureWrapper(BiClosure<? super A1, ? super A2> closure) {
		return nullCheckSetClosureWrapper(closure, ClosureTools.nullClosure());
	}

	/**
	 * Construct a "set" closure that wraps another "set" closure and
	 * provides a hook to execute a different closure
	 * if the target object is <code>null</code>.
	 */
	public static <A1, A2> BiClosure<A1, A2> nullCheckSetClosureWrapper(BiClosure<? super A1, ? super A2> closure, Closure<? super A2> nullTargetSetClosure) {
		return new NullCheckSetClosureWrapper<>(closure, nullTargetSetClosure);
	}

	/**
	 * "Set" closure that wraps another "set" closure and
	 * provides a hook to execute a different closure
	 * if the target object is <code>null</code>.
	 */
	public static final class NullCheckSetClosureWrapper<A1, A2>
		implements BiClosure<A1, A2>
	{
		private final BiClosure<? super A1, ? super A2> closure;
		private final Closure<? super A2> nullTargetClosure;

		public NullCheckSetClosureWrapper(BiClosure<? super A1, ? super A2> closure, Closure<? super A2> nullTargetClosure) {
			super();
			if (closure == null) {
				throw new NullPointerException();
			}
			this.closure = closure;
			if (nullTargetClosure == null) {
				throw new NullPointerException();
			}
			this.nullTargetClosure = nullTargetClosure;
		}

		public void execute(A1 argument1, A2 argument2) {
			if (argument1 != null) {
				this.closure.execute(argument1, argument2);
			} else {
				this.nullTargetClosure.execute(argument2);
			}
		}

		@Override
		public String toString() {
			return ObjectTools.toString(this, this.closure);
		}
	}

	/**
	 * Construct a "set" bi-closure that wraps another "set" closure and
	 * forwards only the second argument to it.
	 */
	public static <A1, A2> BiClosure<A1, A2> setClosureAdapter(Closure<? super A2> closure) {
		return new SetClosureAdapter<>(closure);
	}

	/**
	 * "Set" bi-closure that wraps another "set" closure and
	 * forwards only the second argument to it.
	 */
	public static final class SetClosureAdapter<A1, A2>
		implements BiClosure<A1, A2>
	{
		private final Closure<? super A2> closure;
		
		public SetClosureAdapter(Closure<? super A2> closure) {
			super();
			if (closure == null) {
				throw new NullPointerException();
			}
			this.closure = closure;
		}

		public void execute(A1 argument1, A2 argument2) {
			this.closure.execute(argument2);
		}

		@Override
		public String toString() {
			return ObjectTools.toString(this, this.closure);
		}
	}


	// ********** compound PVMs **********

	/**
	 * Construct a compound property value model for the
	 * specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the model's value will also be <code>null</code>.
	 */
	public static <V> PropertyValueModel<V> compound(PropertyValueModel<? extends PropertyValueModel<? extends V>> outerModel) {
		return propertyValueModel(compoundPropertyValueModelAdapterFactory(outerModel));
	}

	/**
	 * Construct a compound property value model for the
	 * specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the model will throw a {@link NullPointerException}.
	 */
	public static <V> PropertyValueModel<V> compound_(PropertyValueModel<? extends PropertyValueModel<? extends V>> outerModel) {
		return propertyValueModel(compoundPropertyValueModelAdapterFactory_(outerModel));
	}

	/**
	 * Construct a compound property value model adapter factory for
	 * the specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the factory's model's value will also be <code>null</code>.
	 */
	public static <V, IM extends PropertyValueModel<? extends V>, OM extends PropertyValueModel<? extends IM>> PropertyAspectAdapter.Factory<V, IM, OM> compoundPropertyValueModelAdapterFactory(OM outerModel) {
		return aspectAdapterFactory_(
				outerModel,
				PropertyValueModel.VALUE,
				valueTransformer()
			);
	}

	/**
	 * Construct a compound property value model adapter factory for
	 * the specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the factory's model will throw a {@link NullPointerException}.
	 */
	public static <V, IM extends PropertyValueModel<? extends V>, OM extends PropertyValueModel<? extends IM>> PropertyAspectAdapter.Factory<V, IM, OM> compoundPropertyValueModelAdapterFactory_(OM outerModel) {
		return aspectAdapterFactory_(
				outerModel,
				PropertyValueModel.VALUE,
				valueTransformer_()
			);
	}

	/**
	 * Construct a modifiable compound property value model
	 * for the specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the model's value will also be <code>null</code>
	 * and, if the model's value is set, it will do nothing.
	 */
	public static <V> ModifiablePropertyValueModel<V> compoundModifiable(PropertyValueModel<? extends ModifiablePropertyValueModel<V>> outerModel) {
		return modifiablePropertyValueModel(compoundModifiablePropertyValueModelAdapterFactory(outerModel));
	}

	/**
	 * Construct a modifiable compound property value model
	 * for the specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the model will throw a {@link NullPointerException}
	 * when either its value is get or set.
	 */
	public static <V> ModifiablePropertyValueModel<V> compoundModifiable_(PropertyValueModel<? extends ModifiablePropertyValueModel<V>> outerModel) {
		return modifiablePropertyValueModel(compoundModifiablePropertyValueModelAdapterFactory_(outerModel));
	}

	/**
	 * Construct a modifiable compound property value model adapter factory
	 * for the specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the model's value will also be <code>null</code>
	 * and, if the model's value is set, it will do nothing.
	 */
	public static <V> PluggableModifiablePropertyValueModel.Adapter.Factory<V> compoundModifiablePropertyValueModelAdapterFactory(PropertyValueModel<? extends ModifiablePropertyValueModel<V>> outerModel) {
		return modifiablePropertyAspectAdapterFactory_(
				compoundPropertyValueModelAdapterFactory(outerModel),
				setValueClosure()
			);
	}

	/**
	 * Construct a modifiable compound property value model adapter factory
	 * for the specified <em>outer</em> property value model.
	 * <p>
	 * <strong>NB:</strong>
	 * If the <em>outer</em> model's value is ever <code>null</code>,
	 * the factory's model will throw a {@link NullPointerException}
	 * when either its value is get or set.
	 */
	public static <V> PluggableModifiablePropertyValueModel.Adapter.Factory<V> compoundModifiablePropertyValueModelAdapterFactory_(PropertyValueModel<? extends ModifiablePropertyValueModel<V>> outerModel) {
		return modifiablePropertyAspectAdapterFactory_(
				compoundPropertyValueModelAdapterFactory_(outerModel),
				setValueClosure_()
			);
	}


	// ********** aspect adapters **********

	/**
	 * Construct a property aspect adapter for the
	 * specified subject model, aspect name, and transformer.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer will <em>never</em> be passed a <code>null</code> subject.
	 * Instead, a <code>null</code> subject will be transformed into a <code>null</code> value.
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<? extends S>> PropertyValueModel<V> aspectAdapter(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> transformer
	) {
		return propertyValueModel(aspectAdapterFactory(subjectModel, aspectName, transformer));
	}

	/**
	 * Construct a property aspect adapter for the
	 * specified subject model, aspect name, and transformer.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer must be able to handle a <code>null</code> subject.
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<? extends S>> PropertyValueModel<V> aspectAdapter_(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> transformer
	) {
		return propertyValueModel(aspectAdapterFactory_(subjectModel, aspectName, transformer));
	}

	/**
	 * Construct a property aspect adapter factory for the
	 * specified subject model, aspect name, and transformer.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer will <em>never</em> be passed a <code>null</code> subject.
	 * Instead, a <code>null</code> subject will be transformed into a <code>null</code> value.
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<? extends S>> PropertyAspectAdapter.Factory<V, S, SM> aspectAdapterFactory(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> transformer
	) {
		return aspectAdapterFactory_(subjectModel, aspectName, TransformerTools.nullCheck(transformer));
	}

	/**
	 * Construct a property aspect adapter factory for the
	 * specified subject model, aspect name, and transformer.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer must be able to handle a <code>null</code> subject.
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<? extends S>> PropertyAspectAdapter.Factory<V, S, SM> aspectAdapterFactory_(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> transformer
	) {
		return new PropertyAspectAdapter.Factory<>(subjectModel, aspectName, transformer);
	}


	// ********** modifiable aspect adapters **********

	/**
	 * Construct a modifiable property aspect adapter for the
	 * specified subject model, aspect name, transformer, and closure.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer will <em>never</em> be passed a <code>null</code> subject.
	 * Instead, a <code>null</code> subject will be transformed into a <code>null</code> value.
	 * Likewise, if the subject is <code>null</code>, the specified closure will
	 * not be executed.
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<S>> ModifiablePropertyValueModel<V> modifiablePropertyAspectAdapter(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> getTransformer,
			BiClosure<? super S, ? super V> setClosure
	) {
		return modifiablePropertyValueModel(modifiablePropertyAspectAdapterFactory(subjectModel, aspectName, getTransformer, setClosure));
	}

	/**
	 * Construct a modifiable property aspect adapter for the
	 * specified subject model, aspect name, transformer, and closure.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer must be able to handle a <code>null</code> subject.
	 * Likewise, the specified closure must be able to handle a <code>null</code>
	 * subject (i.e. first argument).
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<S>> ModifiablePropertyValueModel<V> modifiablePropertyAspectAdapter_(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> getTransformer,
			BiClosure<? super S, ? super V> setClosure
	) {
		return modifiablePropertyValueModel(modifiablePropertyAspectAdapterFactory_(subjectModel, aspectName, getTransformer, setClosure));
	}

	/**
	 * Construct a modifiable property aspect adapter factory for the
	 * specified subject model, aspect name, transformer, and closure.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer will <em>never</em> be passed a <code>null</code> subject.
	 * Instead, a <code>null</code> subject will be transformed into a <code>null</code> value.
	 * Likewise, if the subject is <code>null</code>, the specified closure will
	 * not be executed.
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<S>> PluggableModifiablePropertyValueModel.Adapter.Factory<V> modifiablePropertyAspectAdapterFactory(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> getTransformer,
			BiClosure<? super S, ? super V> setClosure
	) {
		return modifiablePropertyAspectAdapterFactory(aspectAdapterFactory(subjectModel, aspectName, getTransformer), setClosure);
	}

	/**
	 * Construct a modifiable property aspect adapter factory for the
	 * specified subject model, aspect name, transformer, and closure.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified transformer must be able to handle a <code>null</code> subject.
	 * Likewise, the specified closure must be able to handle a <code>null</code>
	 * subject (i.e. first argument).
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<S>> PluggableModifiablePropertyValueModel.Adapter.Factory<V> modifiablePropertyAspectAdapterFactory_(
			SM subjectModel,
			String aspectName,
			Transformer<? super S, ? extends V> getTransformer,
			BiClosure<? super S, ? super V> setClosure
	) {
		return modifiablePropertyAspectAdapterFactory_(aspectAdapterFactory_(subjectModel, aspectName, getTransformer), setClosure);
	}

	/**
	 * Construct a modifiable property aspect adapter factory for the
	 * specified factory and closure.
	 * <p>
	 * <strong>NB:</strong>
	 * If the subject is <code>null</code>, the specified closure will
	 * not be executed.
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<S>> PluggableModifiablePropertyValueModel.Adapter.Factory<V> modifiablePropertyAspectAdapterFactory(
			PropertyAspectAdapter.Factory<V, S, SM> factory,
			BiClosure<? super S, ? super V> setClosure
	) {
		return modifiablePropertyAspectAdapterFactory_(factory, nullCheckSetClosureWrapper(setClosure));
	}

	/**
	 * Construct a modifiable property aspect adapter factory for the
	 * specified factory and closure.
	 * <p>
	 * <strong>NB:</strong>
	 * The specified closure must be able to handle a <code>null</code>
	 * subject (i.e. first argument).
	 */
	public static <V, S extends Model, SM extends PropertyValueModel<S>> PluggableModifiablePropertyValueModel.Adapter.Factory<V> modifiablePropertyAspectAdapterFactory_(
			PropertyAspectAdapter.Factory<V, S, SM> factory,
			BiClosure<? super S, ? super V> setClosure
	) {
		return new ModifiablePropertyAspectAdapter.Factory<>(factory, setClosure);
	}


	// ********** pluggable PVMs **********

	/**
	 * Construct a property value model adapter for the specified adapter factory.
	 * 
	 * @see PluggablePropertyValueModel
	 */
	public static <V> PropertyValueModel<V> propertyValueModel(PluggablePropertyValueModel.Adapter.Factory<V> adapterFactory) {
		return new PluggablePropertyValueModel<>(adapterFactory);
	}

	/**
	 * Construct a <em>modifiable</em> property value model adapter for the specified
	 * property value model adapter adapter factory and closure.
	 * The specified closure is invoked when the model's value is set.
	 * 
	 * @see PluggableModifiablePropertyValueModel
	 */
	public static <V> ModifiablePropertyValueModel<V> pluggableModifiablePropertyValueModel(BasePluggablePropertyValueModel.Adapter.Factory<V, ? extends BasePluggablePropertyValueModel.Adapter<V>> factory, Closure<? super V> setValueClosure) {
		return modifiablePropertyValueModel(new PluggableModifiablePropertyValueModelAdapter.Factory<>(factory, setValueClosure));
	}

	/**
	 * Construct a modifiable property value model adapter for the specified adapter factory.
	 * 
	 * @see PluggableModifiablePropertyValueModel
	 */
	public static <V> ModifiablePropertyValueModel<V> modifiablePropertyValueModel(PluggableModifiablePropertyValueModel.Adapter.Factory<V> adapterFactory) {
		return new PluggableModifiablePropertyValueModel<>(adapterFactory);
	}


	// ********** factories **********

	/**
	 * Construct property value model that can be used for
	 * returning a static value, but still allows listeners to be added.
	 * Listeners will <em>never</em> be notified of any changes, because there should be none.
	 */
	public static <V> PropertyValueModel<V> staticPropertyValueModel(V value) {
		return new StaticPropertyValueModel<>(value);
	}


	// ********** value transformers/closures **********

	/**
	 * Return a transformer that converts a property value model to its value
	 * but first checks whether the property value model passed to it is <code>null</code>.
	 * <p>
	 * <strong>NB:</strong>
	 * If the property value model is <code>null</code>, the transformer returns
	 * <code>null</code>.
	 * 
	 * @see #valueTransformer(Object)
	 * @see #valueTransformer_()
	 * @see PropertyValueModel#VALUE_TRANSFORMER
	 */
	@SuppressWarnings("unchecked")
	public static <V, PVM extends PropertyValueModel<? extends V>> Transformer<PVM, V> valueTransformer() {
		return NULL_CHECK_VALUE_TRANSFORMER;
	}

	@SuppressWarnings("rawtypes")
	public static final Transformer NULL_CHECK_VALUE_TRANSFORMER = TransformerTools.nullCheck(valueTransformer_(), null);

	/**
	 * Return a transformer that converts a property value model to its value
	 * but first checks whether the property value model passed to it is <code>null</code>.
	 * <p>
	 * <strong>NB:</strong>
	 * If the property value model is <code>null</code>, the transformer returns
	 * the specified null value.
	 * 
	 * @see #valueTransformer()
	 * @see #valueTransformer_()
	 * @see PropertyValueModel#VALUE_TRANSFORMER
	 */
	public static <V, PVM extends PropertyValueModel<? extends V>> Transformer<PVM, V> valueTransformer(V nullValue) {
		return TransformerTools.nullCheck(valueTransformer_(), nullValue);
	}

	/**
	 * Return a transformer that converts a property value model to its value.
	 * <p>
	 * <strong>NB:</strong>
	 * If the property value model is <code>null</code>, the transformer throws
	 * a {@link NullPointerException}.
	 * 
	 * @see #valueTransformer(Object)
	 * @see #valueTransformer()
	 * @see PropertyValueModel#VALUE_TRANSFORMER
	 */
	@SuppressWarnings("unchecked")
	public static <V, PVM extends PropertyValueModel<? extends V>> Transformer<PVM, V> valueTransformer_() {
		return PropertyValueModel.VALUE_TRANSFORMER;
	}

	/**
	 * Return a closure that sets a property value model's value.
	 * <p>
	 * <strong>NB:</strong>
	 * If the property value model is <code>null</code>, the closure
	 * does nothing.
	 * 
	 * @see #setValueClosure_()
	 * @see PropertyValueModel#VALUE_TRANSFORMER
	 */
	@SuppressWarnings("unchecked")
	public static <V, PVM extends ModifiablePropertyValueModel<? super V>> BiClosure<PVM, V> setValueClosure() {
		return NULL_CHECK_SET_VALUE_CLOSURE;
	}

	@SuppressWarnings("rawtypes")
	public static final BiClosure NULL_CHECK_SET_VALUE_CLOSURE = nullCheckSetClosureWrapper(setValueClosure_());

	/**
	 * Return a closure that sets a property value model's value.
	 * <p>
	 * <strong>NB:</strong>
	 * If the property value model is <code>null</code>, the closure throws
	 * a {@link NullPointerException}.
	 * 
	 * @see #setValueClosure()
	 * @see PropertyValueModel#VALUE_TRANSFORMER
	 */
	@SuppressWarnings("unchecked")
	public static <V, PVM extends ModifiablePropertyValueModel<? super V>> BiClosure<PVM, V> setValueClosure_() {
		return ModifiablePropertyValueModel.SET_VALUE_CLOSURE;
	}


	// ********** suppressed constructor **********

	/**
	 * Suppress default constructor, ensuring non-instantiability.
	 */
	private PropertyValueModelTools() {
		super();
		throw new UnsupportedOperationException();
	}
}

Back to the top