1
2
3
4
5 package org.andromda.cartridges.hibernate.metafacades;
6
7 import java.util.Collection;
8 import java.util.List;
9 import org.andromda.core.common.Introspector;
10 import org.andromda.core.metafacade.MetafacadeBase;
11 import org.andromda.core.metafacade.MetafacadeFactory;
12 import org.andromda.core.metafacade.ModelValidationMessage;
13 import org.andromda.metafacades.uml.AssociationEndFacade;
14 import org.andromda.metafacades.uml.AttributeFacade;
15 import org.andromda.metafacades.uml.ClassifierFacade;
16 import org.andromda.metafacades.uml.ConstraintFacade;
17 import org.andromda.metafacades.uml.DependencyFacade;
18 import org.andromda.metafacades.uml.Destination;
19 import org.andromda.metafacades.uml.GeneralizableElementFacade;
20 import org.andromda.metafacades.uml.GeneralizationFacade;
21 import org.andromda.metafacades.uml.ModelElementFacade;
22 import org.andromda.metafacades.uml.ModelFacade;
23 import org.andromda.metafacades.uml.OperationFacade;
24 import org.andromda.metafacades.uml.PackageFacade;
25 import org.andromda.metafacades.uml.Role;
26 import org.andromda.metafacades.uml.Service;
27 import org.andromda.metafacades.uml.StateMachineFacade;
28 import org.andromda.metafacades.uml.StereotypeFacade;
29 import org.andromda.metafacades.uml.TaggedValueFacade;
30 import org.andromda.metafacades.uml.TemplateParameterFacade;
31 import org.andromda.metafacades.uml.TypeMappings;
32
33
34
35
36
37
38
39 public abstract class HibernateServiceLogic
40 extends MetafacadeBase
41 implements HibernateService
42 {
43
44
45
46
47 protected Object metaObject;
48
49
50
51
52
53 protected HibernateServiceLogic(Object metaObjectIn, String context)
54 {
55 super(metaObjectIn, getContext(context));
56 this.superService =
57 (Service)
58 MetafacadeFactory.getInstance().createFacadeImpl(
59 "org.andromda.metafacades.uml.Service",
60 metaObjectIn,
61 getContext(context));
62 this.metaObject = metaObjectIn;
63 }
64
65
66
67
68
69
70 private static String getContext(String context)
71 {
72 if (context == null)
73 {
74 context = "org.andromda.cartridges.hibernate.metafacades.HibernateService";
75 }
76 return context;
77 }
78
79 private Service superService;
80 private boolean superServiceInitialized = false;
81
82
83
84
85
86 private Service getSuperService()
87 {
88 if (!this.superServiceInitialized)
89 {
90 ((MetafacadeBase)this.superService).setMetafacadeContext(this.getMetafacadeContext());
91 this.superServiceInitialized = true;
92 }
93 return this.superService;
94 }
95
96
97
98
99
100 @Override
101 public void resetMetafacadeContext(String context)
102 {
103 if (!this.contextRoot)
104 {
105 context = getContext(context);
106 setMetafacadeContext (context);
107 if (this.superServiceInitialized)
108 {
109 ((MetafacadeBase)this.superService).resetMetafacadeContext(context);
110 }
111 }
112 }
113
114
115
116
117
118 public boolean isHibernateServiceMetaType()
119 {
120 return true;
121 }
122
123
124
125
126
127
128
129 protected abstract String handleGetEjbJndiName();
130
131 private String __ejbJndiName1a;
132 private boolean __ejbJndiName1aSet = false;
133
134
135
136
137
138 public final String getEjbJndiName()
139 {
140 String ejbJndiName1a = this.__ejbJndiName1a;
141 if (!this.__ejbJndiName1aSet)
142 {
143
144 ejbJndiName1a = handleGetEjbJndiName();
145
146 this.__ejbJndiName1a = ejbJndiName1a;
147 if (isMetafacadePropertyCachingEnabled())
148 {
149 this.__ejbJndiName1aSet = true;
150 }
151 }
152 return ejbJndiName1a;
153 }
154
155
156
157
158
159 protected abstract String handleGetEjbViewType();
160
161 private String __ejbViewType2a;
162 private boolean __ejbViewType2aSet = false;
163
164
165
166
167
168 public final String getEjbViewType()
169 {
170 String ejbViewType2a = this.__ejbViewType2a;
171 if (!this.__ejbViewType2aSet)
172 {
173
174 ejbViewType2a = handleGetEjbViewType();
175
176 this.__ejbViewType2a = ejbViewType2a;
177 if (isMetafacadePropertyCachingEnabled())
178 {
179 this.__ejbViewType2aSet = true;
180 }
181 }
182 return ejbViewType2a;
183 }
184
185
186
187
188
189 protected abstract boolean handleIsEjbStateful();
190
191 private boolean __ejbStateful3a;
192 private boolean __ejbStateful3aSet = false;
193
194
195
196
197
198 public final boolean isEjbStateful()
199 {
200 boolean ejbStateful3a = this.__ejbStateful3a;
201 if (!this.__ejbStateful3aSet)
202 {
203
204 ejbStateful3a = handleIsEjbStateful();
205
206 this.__ejbStateful3a = ejbStateful3a;
207 if (isMetafacadePropertyCachingEnabled())
208 {
209 this.__ejbStateful3aSet = true;
210 }
211 }
212 return ejbStateful3a;
213 }
214
215
216
217
218
219 protected abstract boolean handleIsEjbRemoteView();
220
221 private boolean __ejbRemoteView4a;
222 private boolean __ejbRemoteView4aSet = false;
223
224
225
226
227
228 public final boolean isEjbRemoteView()
229 {
230 boolean ejbRemoteView4a = this.__ejbRemoteView4a;
231 if (!this.__ejbRemoteView4aSet)
232 {
233
234 ejbRemoteView4a = handleIsEjbRemoteView();
235
236 this.__ejbRemoteView4a = ejbRemoteView4a;
237 if (isMetafacadePropertyCachingEnabled())
238 {
239 this.__ejbRemoteView4aSet = true;
240 }
241 }
242 return ejbRemoteView4a;
243 }
244
245
246
247
248
249 public boolean isServiceMetaType()
250 {
251 return true;
252 }
253
254
255
256
257
258 public boolean isClassifierFacadeMetaType()
259 {
260 return true;
261 }
262
263
264
265
266
267 public boolean isGeneralizableElementFacadeMetaType()
268 {
269 return true;
270 }
271
272
273
274
275
276 public boolean isModelElementFacadeMetaType()
277 {
278 return true;
279 }
280
281
282
283
284
285
286 public AttributeFacade findAttribute(String name)
287 {
288 return this.getSuperService().findAttribute(name);
289 }
290
291
292
293
294
295 public Collection<ClassifierFacade> getAbstractions()
296 {
297 return this.getSuperService().getAbstractions();
298 }
299
300
301
302
303
304
305 public Collection<ClassifierFacade> getAllAssociatedClasses()
306 {
307 return this.getSuperService().getAllAssociatedClasses();
308 }
309
310
311
312
313
314
315 public Collection<ModelElementFacade> getAllProperties()
316 {
317 return this.getSuperService().getAllProperties();
318 }
319
320
321
322
323
324
325 public Collection<ModelElementFacade> getAllRequiredConstructorParameters()
326 {
327 return this.getSuperService().getAllRequiredConstructorParameters();
328 }
329
330
331
332
333
334
335 public ClassifierFacade getArray()
336 {
337 return this.getSuperService().getArray();
338 }
339
340
341
342
343
344 public String getArrayName()
345 {
346 return this.getSuperService().getArrayName();
347 }
348
349
350
351
352
353
354 public Collection<ClassifierFacade> getAssociatedClasses()
355 {
356 return this.getSuperService().getAssociatedClasses();
357 }
358
359
360
361
362
363 public List<AssociationEndFacade> getAssociationEnds()
364 {
365 return this.getSuperService().getAssociationEnds();
366 }
367
368
369
370
371
372 public List<AttributeFacade> getAttributes()
373 {
374 return this.getSuperService().getAttributes();
375 }
376
377
378
379
380
381
382 public List<AttributeFacade> getAttributes(boolean follow)
383 {
384 return this.getSuperService().getAttributes(follow);
385 }
386
387
388
389
390
391 public String getFullyQualifiedArrayName()
392 {
393 return this.getSuperService().getFullyQualifiedArrayName();
394 }
395
396
397
398
399
400
401
402
403 public Collection<OperationFacade> getImplementationOperations()
404 {
405 return this.getSuperService().getImplementationOperations();
406 }
407
408
409
410
411
412 public String getImplementedInterfaceList()
413 {
414 return this.getSuperService().getImplementedInterfaceList();
415 }
416
417
418
419
420
421 public Collection<AttributeFacade> getInstanceAttributes()
422 {
423 return this.getSuperService().getInstanceAttributes();
424 }
425
426
427
428
429
430 public List<OperationFacade> getInstanceOperations()
431 {
432 return this.getSuperService().getInstanceOperations();
433 }
434
435
436
437
438
439
440 public Collection<ClassifierFacade> getInterfaceAbstractions()
441 {
442 return this.getSuperService().getInterfaceAbstractions();
443 }
444
445
446
447
448
449
450 public String getJavaNewString()
451 {
452 return this.getSuperService().getJavaNewString();
453 }
454
455
456
457
458
459
460 public String getJavaNullString()
461 {
462 return this.getSuperService().getJavaNullString();
463 }
464
465
466
467
468
469 public Collection<AssociationEndFacade> getNavigableConnectingEnds()
470 {
471 return this.getSuperService().getNavigableConnectingEnds();
472 }
473
474
475
476
477
478
479 public List<AssociationEndFacade> getNavigableConnectingEnds(boolean follow)
480 {
481 return this.getSuperService().getNavigableConnectingEnds(follow);
482 }
483
484
485
486
487
488
489
490 public ClassifierFacade getNonArray()
491 {
492 return this.getSuperService().getNonArray();
493 }
494
495
496
497
498
499
500
501 public String getOperationCallFromAttributes()
502 {
503 return this.getSuperService().getOperationCallFromAttributes();
504 }
505
506
507
508
509
510 public List<OperationFacade> getOperations()
511 {
512 return this.getSuperService().getOperations();
513 }
514
515
516
517
518
519
520 public List<ModelElementFacade> getProperties()
521 {
522 return this.getSuperService().getProperties();
523 }
524
525
526
527
528
529
530
531 public List getProperties(boolean follow)
532 {
533 return this.getSuperService().getProperties(follow);
534 }
535
536
537
538
539
540
541 public Collection<ModelElementFacade> getRequiredConstructorParameters()
542 {
543 return this.getSuperService().getRequiredConstructorParameters();
544 }
545
546
547
548
549
550 public long getSerialVersionUID()
551 {
552 return this.getSuperService().getSerialVersionUID();
553 }
554
555
556
557
558
559 public Collection<AttributeFacade> getStaticAttributes()
560 {
561 return this.getSuperService().getStaticAttributes();
562 }
563
564
565
566
567
568 public List<OperationFacade> getStaticOperations()
569 {
570 return this.getSuperService().getStaticOperations();
571 }
572
573
574
575
576
577
578 public ClassifierFacade getSuperClass()
579 {
580 return this.getSuperService().getSuperClass();
581 }
582
583
584
585
586
587
588
589
590
591 public String getWrapperName()
592 {
593 return this.getSuperService().getWrapperName();
594 }
595
596
597
598
599
600 public boolean isAbstract()
601 {
602 return this.getSuperService().isAbstract();
603 }
604
605
606
607
608
609 public boolean isArrayType()
610 {
611 return this.getSuperService().isArrayType();
612 }
613
614
615
616
617
618 public boolean isAssociationClass()
619 {
620 return this.getSuperService().isAssociationClass();
621 }
622
623
624
625
626
627 public boolean isBlobType()
628 {
629 return this.getSuperService().isBlobType();
630 }
631
632
633
634
635
636 public boolean isBooleanType()
637 {
638 return this.getSuperService().isBooleanType();
639 }
640
641
642
643
644
645 public boolean isCharacterType()
646 {
647 return this.getSuperService().isCharacterType();
648 }
649
650
651
652
653
654 public boolean isClobType()
655 {
656 return this.getSuperService().isClobType();
657 }
658
659
660
661
662
663 public boolean isCollectionType()
664 {
665 return this.getSuperService().isCollectionType();
666 }
667
668
669
670
671
672
673
674 public boolean isDataType()
675 {
676 return this.getSuperService().isDataType();
677 }
678
679
680
681
682
683 public boolean isDateType()
684 {
685 return this.getSuperService().isDateType();
686 }
687
688
689
690
691
692 public boolean isDoubleType()
693 {
694 return this.getSuperService().isDoubleType();
695 }
696
697
698
699
700
701 public boolean isEmbeddedValue()
702 {
703 return this.getSuperService().isEmbeddedValue();
704 }
705
706
707
708
709
710 public boolean isEnumeration()
711 {
712 return this.getSuperService().isEnumeration();
713 }
714
715
716
717
718
719 public boolean isFileType()
720 {
721 return this.getSuperService().isFileType();
722 }
723
724
725
726
727
728 public boolean isFloatType()
729 {
730 return this.getSuperService().isFloatType();
731 }
732
733
734
735
736
737 public boolean isIntegerType()
738 {
739 return this.getSuperService().isIntegerType();
740 }
741
742
743
744
745
746 public boolean isInterface()
747 {
748 return this.getSuperService().isInterface();
749 }
750
751
752
753
754
755 public boolean isLeaf()
756 {
757 return this.getSuperService().isLeaf();
758 }
759
760
761
762
763
764 public boolean isListType()
765 {
766 return this.getSuperService().isListType();
767 }
768
769
770
771
772
773 public boolean isLongType()
774 {
775 return this.getSuperService().isLongType();
776 }
777
778
779
780
781
782 public boolean isMapType()
783 {
784 return this.getSuperService().isMapType();
785 }
786
787
788
789
790
791 public boolean isPrimitive()
792 {
793 return this.getSuperService().isPrimitive();
794 }
795
796
797
798
799
800 public boolean isSetType()
801 {
802 return this.getSuperService().isSetType();
803 }
804
805
806
807
808
809 public boolean isStringType()
810 {
811 return this.getSuperService().isStringType();
812 }
813
814
815
816
817
818 public boolean isTimeType()
819 {
820 return this.getSuperService().isTimeType();
821 }
822
823
824
825
826
827 public boolean isWrappedPrimitive()
828 {
829 return this.getSuperService().isWrappedPrimitive();
830 }
831
832
833
834
835
836
837 public Object findTaggedValue(String tagName, boolean follow)
838 {
839 return this.getSuperService().findTaggedValue(tagName, follow);
840 }
841
842
843
844
845
846 public Collection<GeneralizableElementFacade> getAllGeneralizations()
847 {
848 return this.getSuperService().getAllGeneralizations();
849 }
850
851
852
853
854
855 public Collection<GeneralizableElementFacade> getAllSpecializations()
856 {
857 return this.getSuperService().getAllSpecializations();
858 }
859
860
861
862
863
864 public GeneralizableElementFacade getGeneralization()
865 {
866 return this.getSuperService().getGeneralization();
867 }
868
869
870
871
872
873
874 public Collection<GeneralizationFacade> getGeneralizationLinks()
875 {
876 return this.getSuperService().getGeneralizationLinks();
877 }
878
879
880
881
882
883 public String getGeneralizationList()
884 {
885 return this.getSuperService().getGeneralizationList();
886 }
887
888
889
890
891
892
893 public GeneralizableElementFacade getGeneralizationRoot()
894 {
895 return this.getSuperService().getGeneralizationRoot();
896 }
897
898
899
900
901
902 public Collection<GeneralizableElementFacade> getGeneralizations()
903 {
904 return this.getSuperService().getGeneralizations();
905 }
906
907
908
909
910
911 public Collection<GeneralizableElementFacade> getSpecializations()
912 {
913 return this.getSuperService().getSpecializations();
914 }
915
916
917
918
919
920 public void copyTaggedValues(ModelElementFacade element)
921 {
922 this.getSuperService().copyTaggedValues(element);
923 }
924
925
926
927
928
929
930 public Object findTaggedValue(String tagName)
931 {
932 return this.getSuperService().findTaggedValue(tagName);
933 }
934
935
936
937
938
939
940 public Collection<Object> findTaggedValues(String tagName)
941 {
942 return this.getSuperService().findTaggedValues(tagName);
943 }
944
945
946
947
948
949
950
951 public String getBindedFullyQualifiedName(ModelElementFacade bindedElement)
952 {
953 return this.getSuperService().getBindedFullyQualifiedName(bindedElement);
954 }
955
956
957
958
959
960 public Collection<ConstraintFacade> getConstraints()
961 {
962 return this.getSuperService().getConstraints();
963 }
964
965
966
967
968
969
970 public Collection<ConstraintFacade> getConstraints(String kind)
971 {
972 return this.getSuperService().getConstraints(kind);
973 }
974
975
976
977
978
979
980
981 public String getDocumentation(String indent)
982 {
983 return this.getSuperService().getDocumentation(indent);
984 }
985
986
987
988
989
990
991
992
993 public String getDocumentation(String indent, int lineLength)
994 {
995 return this.getSuperService().getDocumentation(indent, lineLength);
996 }
997
998
999
1000
1001
1002
1003
1004 public String getDocumentation(String indent, int lineLength, boolean htmlStyle)
1005 {
1006 return this.getSuperService().getDocumentation(indent, lineLength, htmlStyle);
1007 }
1008
1009
1010
1011
1012
1013 public String getFullyQualifiedName()
1014 {
1015 return this.getSuperService().getFullyQualifiedName();
1016 }
1017
1018
1019
1020
1021
1022
1023
1024
1025 public String getFullyQualifiedName(boolean modelName)
1026 {
1027 return this.getSuperService().getFullyQualifiedName(modelName);
1028 }
1029
1030
1031
1032
1033
1034
1035 public String getFullyQualifiedNamePath()
1036 {
1037 return this.getSuperService().getFullyQualifiedNamePath();
1038 }
1039
1040
1041
1042
1043
1044 public String getId()
1045 {
1046 return this.getSuperService().getId();
1047 }
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057 public Collection<String> getKeywords()
1058 {
1059 return this.getSuperService().getKeywords();
1060 }
1061
1062
1063
1064
1065
1066 public String getLabel()
1067 {
1068 return this.getSuperService().getLabel();
1069 }
1070
1071
1072
1073
1074
1075 public TypeMappings getLanguageMappings()
1076 {
1077 return this.getSuperService().getLanguageMappings();
1078 }
1079
1080
1081
1082
1083
1084
1085 public ModelFacade getModel()
1086 {
1087 return this.getSuperService().getModel();
1088 }
1089
1090
1091
1092
1093
1094 public String getName()
1095 {
1096 return this.getSuperService().getName();
1097 }
1098
1099
1100
1101
1102
1103 public ModelElementFacade getPackage()
1104 {
1105 return this.getSuperService().getPackage();
1106 }
1107
1108
1109
1110
1111
1112 public String getPackageName()
1113 {
1114 return this.getSuperService().getPackageName();
1115 }
1116
1117
1118
1119
1120
1121
1122 public String getPackageName(boolean modelName)
1123 {
1124 return this.getSuperService().getPackageName(modelName);
1125 }
1126
1127
1128
1129
1130
1131 public String getPackagePath()
1132 {
1133 return this.getSuperService().getPackagePath();
1134 }
1135
1136
1137
1138
1139
1140
1141
1142
1143 public String getQualifiedName()
1144 {
1145 return this.getSuperService().getQualifiedName();
1146 }
1147
1148
1149
1150
1151
1152 public PackageFacade getRootPackage()
1153 {
1154 return this.getSuperService().getRootPackage();
1155 }
1156
1157
1158
1159
1160
1161 public Collection<DependencyFacade> getSourceDependencies()
1162 {
1163 return this.getSuperService().getSourceDependencies();
1164 }
1165
1166
1167
1168
1169
1170
1171 public StateMachineFacade getStateMachineContext()
1172 {
1173 return this.getSuperService().getStateMachineContext();
1174 }
1175
1176
1177
1178
1179
1180 public Collection<String> getStereotypeNames()
1181 {
1182 return this.getSuperService().getStereotypeNames();
1183 }
1184
1185
1186
1187
1188
1189 public Collection<StereotypeFacade> getStereotypes()
1190 {
1191 return this.getSuperService().getStereotypes();
1192 }
1193
1194
1195
1196
1197
1198 public Collection<TaggedValueFacade> getTaggedValues()
1199 {
1200 return this.getSuperService().getTaggedValues();
1201 }
1202
1203
1204
1205
1206
1207 public Collection<DependencyFacade> getTargetDependencies()
1208 {
1209 return this.getSuperService().getTargetDependencies();
1210 }
1211
1212
1213
1214
1215
1216 public Object getTemplateParameter(String parameterName)
1217 {
1218 return this.getSuperService().getTemplateParameter(parameterName);
1219 }
1220
1221
1222
1223
1224
1225 public Collection<TemplateParameterFacade> getTemplateParameters()
1226 {
1227 return this.getSuperService().getTemplateParameters();
1228 }
1229
1230
1231
1232
1233
1234
1235 public String getVisibility()
1236 {
1237 return this.getSuperService().getVisibility();
1238 }
1239
1240
1241
1242
1243
1244
1245 public boolean hasExactStereotype(String stereotypeName)
1246 {
1247 return this.getSuperService().hasExactStereotype(stereotypeName);
1248 }
1249
1250
1251
1252
1253
1254
1255 public boolean hasKeyword(String keywordName)
1256 {
1257 return this.getSuperService().hasKeyword(keywordName);
1258 }
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272 public boolean hasStereotype(String stereotypeName)
1273 {
1274 return this.getSuperService().hasStereotype(stereotypeName);
1275 }
1276
1277
1278
1279
1280
1281
1282 public boolean isBindingDependenciesPresent()
1283 {
1284 return this.getSuperService().isBindingDependenciesPresent();
1285 }
1286
1287
1288
1289
1290
1291 public boolean isConstraintsPresent()
1292 {
1293 return this.getSuperService().isConstraintsPresent();
1294 }
1295
1296
1297
1298
1299
1300 public boolean isDocumentationPresent()
1301 {
1302 return this.getSuperService().isDocumentationPresent();
1303 }
1304
1305
1306
1307
1308
1309 public boolean isReservedWord()
1310 {
1311 return this.getSuperService().isReservedWord();
1312 }
1313
1314
1315
1316
1317
1318
1319 public boolean isTemplateParametersPresent()
1320 {
1321 return this.getSuperService().isTemplateParametersPresent();
1322 }
1323
1324
1325
1326
1327
1328
1329
1330 public boolean isValidIdentifierName()
1331 {
1332 return this.getSuperService().isValidIdentifierName();
1333 }
1334
1335
1336
1337
1338
1339
1340
1341 public String translateConstraint(String name, String translation)
1342 {
1343 return this.getSuperService().translateConstraint(name, translation);
1344 }
1345
1346
1347
1348
1349
1350 public String[] translateConstraints(String translation)
1351 {
1352 return this.getSuperService().translateConstraints(translation);
1353 }
1354
1355
1356
1357
1358
1359 public String[] translateConstraints(String kind, String translation)
1360 {
1361 return this.getSuperService().translateConstraints(kind, translation);
1362 }
1363
1364
1365
1366
1367
1368 public Collection<DependencyFacade> getAllEntityReferences()
1369 {
1370 return this.getSuperService().getAllEntityReferences();
1371 }
1372
1373
1374
1375
1376
1377 public Collection<Destination> getAllMessagingDestinations()
1378 {
1379 return this.getSuperService().getAllMessagingDestinations();
1380 }
1381
1382
1383
1384
1385
1386
1387 public Collection<Role> getAllRoles()
1388 {
1389 return this.getSuperService().getAllRoles();
1390 }
1391
1392
1393
1394
1395
1396 public Collection<DependencyFacade> getAllServiceReferences()
1397 {
1398 return this.getSuperService().getAllServiceReferences();
1399 }
1400
1401
1402
1403
1404
1405 public Collection<DependencyFacade> getEntityReferences()
1406 {
1407 return this.getSuperService().getEntityReferences();
1408 }
1409
1410
1411
1412
1413
1414 public Collection<Destination> getMessagingDestinations()
1415 {
1416 return this.getSuperService().getMessagingDestinations();
1417 }
1418
1419
1420
1421
1422
1423 public Collection<Role> getRoles()
1424 {
1425 return this.getSuperService().getRoles();
1426 }
1427
1428
1429
1430
1431
1432 public Collection<DependencyFacade> getServiceReferences()
1433 {
1434 return this.getSuperService().getServiceReferences();
1435 }
1436
1437
1438
1439
1440 @Override
1441 public void initialize()
1442 {
1443 this.getSuperService().initialize();
1444 }
1445
1446
1447
1448
1449
1450 @Override
1451 public Object getValidationOwner()
1452 {
1453 Object owner = this.getSuperService().getValidationOwner();
1454 return owner;
1455 }
1456
1457
1458
1459
1460
1461 @Override
1462 public String getValidationName()
1463 {
1464 String name = this.getSuperService().getValidationName();
1465 return name;
1466 }
1467
1468
1469
1470
1471
1472 @Override
1473 public void validateInvariants(Collection<ModelValidationMessage> validationMessages)
1474 {
1475 this.getSuperService().validateInvariants(validationMessages);
1476 }
1477
1478
1479
1480
1481 private static final String NAME_PROPERTY = "name";
1482 private static final String FQNAME_PROPERTY = "fullyQualifiedName";
1483
1484
1485
1486
1487 @Override
1488 public String toString()
1489 {
1490 final StringBuilder toString = new StringBuilder(this.getClass().getName());
1491 toString.append("[");
1492 try
1493 {
1494 toString.append(Introspector.instance().getProperty(this, FQNAME_PROPERTY));
1495 }
1496 catch (final Throwable tryAgain)
1497 {
1498 try
1499 {
1500 toString.append(Introspector.instance().getProperty(this, NAME_PROPERTY));
1501 }
1502 catch (final Throwable ignore)
1503 {
1504
1505 }
1506 }
1507 toString.append("]");
1508 return toString.toString();
1509 }
1510 }