1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.container;
17
18 import org.apache.commons.collections.ListUtils;
19 import org.apache.commons.lang.StringUtils;
20 import org.apache.commons.logging.Log;
21 import org.apache.commons.logging.LogFactory;
22 import org.kuali.rice.core.api.mo.common.active.Inactivatable;
23 import org.kuali.rice.krad.uif.UifConstants;
24 import org.kuali.rice.krad.uif.UifParameters;
25 import org.kuali.rice.krad.uif.UifPropertyPaths;
26 import org.kuali.rice.krad.uif.component.Component;
27 import org.kuali.rice.krad.uif.container.collections.LineBuilderContext;
28 import org.kuali.rice.krad.uif.element.Action;
29 import org.kuali.rice.krad.uif.lifecycle.ViewLifecycle;
30 import org.kuali.rice.krad.uif.lifecycle.ViewLifecycleUtils;
31 import org.kuali.rice.krad.uif.util.ComponentFactory;
32 import org.kuali.rice.krad.uif.util.ComponentUtils;
33 import org.kuali.rice.krad.uif.util.ContextUtils;
34 import org.kuali.rice.krad.uif.util.ObjectPropertyUtils;
35 import org.kuali.rice.krad.uif.util.ScriptUtils;
36 import org.kuali.rice.krad.uif.view.ExpressionEvaluator;
37 import org.kuali.rice.krad.uif.view.FormView;
38 import org.kuali.rice.krad.uif.view.View;
39 import org.kuali.rice.krad.uif.view.ViewModel;
40 import org.kuali.rice.krad.util.KRADUtils;
41 import org.kuali.rice.krad.web.form.UifFormBase;
42
43 import java.io.Serializable;
44 import java.util.ArrayList;
45 import java.util.Collection;
46 import java.util.HashMap;
47 import java.util.List;
48 import java.util.Map;
49
50
51
52
53
54
55
56
57 public class CollectionGroupBuilder implements Serializable {
58
59 private static final long serialVersionUID = -4762031957079895244L;
60 private static Log LOG = LogFactory.getLog(CollectionGroupBuilder.class);
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80 public void build(View view, Object model, CollectionGroup collectionGroup) {
81
82 if (collectionGroup.isRenderAddLine() && !Boolean.TRUE.equals(collectionGroup.getReadOnly()) &&
83 !collectionGroup.isRenderAddBlankLineButton()) {
84 buildAddLine(view, model, collectionGroup);
85 }
86
87
88 if (collectionGroup.isRenderAddBlankLineButton() && (collectionGroup.getAddBlankLineAction() != null)) {
89 collectionGroup.getAddBlankLineAction().setRefreshId(collectionGroup.getId());
90 }
91
92
93 List<Object> modelCollection = ObjectPropertyUtils.getPropertyValue(model,
94 collectionGroup.getBindingInfo().getBindingPath());
95
96 if (modelCollection == null) {
97 return;
98 }
99
100
101 List<Integer> showIndexes = performCollectionFiltering(view, model, collectionGroup, modelCollection);
102
103 if (collectionGroup.getDisplayCollectionSize() != -1 && showIndexes.size() > collectionGroup
104 .getDisplayCollectionSize()) {
105
106 List<Integer> newShowIndexes = new ArrayList<Integer>();
107 Integer counter = 0;
108
109 for (int index = 0; index < showIndexes.size(); index++) {
110 newShowIndexes.add(showIndexes.get(index));
111
112 counter++;
113
114 if (counter == collectionGroup.getDisplayCollectionSize()) {
115 break;
116 }
117 }
118
119 showIndexes = newShowIndexes;
120 }
121
122
123 List<IndexedElement> filteredIndexedElements = buildFilteredIndexedCollection(showIndexes, modelCollection);
124 collectionGroup.setFilteredCollectionSize(filteredIndexedElements.size());
125
126 buildLinesForDisplayedRows(filteredIndexedElements, view, model, collectionGroup);
127 }
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145 private List<IndexedElement> buildFilteredIndexedCollection(List<Integer> showIndexes,
146 List<Object> modelCollection) {
147
148 List<IndexedElement> filteredIndexedElements = new ArrayList<IndexedElement>(modelCollection.size());
149
150 for (Integer showIndex : showIndexes) {
151 filteredIndexedElements.add(new IndexedElement(showIndex, modelCollection.get(showIndex)));
152 }
153
154 return filteredIndexedElements;
155 }
156
157
158
159
160
161
162
163
164
165 protected void buildLinesForDisplayedRows(List<IndexedElement> filteredIndexedElements, View view, Object model,
166 CollectionGroup collectionGroup) {
167
168
169
170 if (collectionGroup.isUseServerPaging() && collectionGroup.getDisplayLength() == -1) {
171 collectionGroup.setDisplayLength(1);
172 }
173
174 int displayStart = (collectionGroup.getDisplayStart() != -1 && collectionGroup.isUseServerPaging()) ?
175 collectionGroup.getDisplayStart() : 0;
176
177 int displayLength = (collectionGroup.getDisplayLength() != -1 && collectionGroup.isUseServerPaging()) ?
178 collectionGroup.getDisplayLength() : filteredIndexedElements.size() - displayStart;
179
180
181 int displayEndExclusive =
182 (displayStart + displayLength > filteredIndexedElements.size()) ? filteredIndexedElements.size() :
183 displayStart + displayLength;
184
185
186 List<IndexedElement> renderedIndexedElements = filteredIndexedElements.subList(displayStart,
187 displayEndExclusive);
188
189
190 for (IndexedElement indexedElement : renderedIndexedElements) {
191 Object currentLine = indexedElement.element;
192
193 String bindingPathPrefix =
194 collectionGroup.getBindingInfo().getBindingPrefixForNested() + "[" + indexedElement.index + "]";
195
196
197 initializeEditLineDialog(collectionGroup, indexedElement.index, currentLine, model);
198
199 List<Component> actionComponents = new ArrayList<>(ComponentUtils.copy(collectionGroup.getLineActions()));
200
201
202 List<? extends Component> lineActions = initializeLineActions(actionComponents, view, collectionGroup,
203 currentLine, indexedElement.index);
204
205 LineBuilderContext lineBuilderContext = new LineBuilderContext(indexedElement.index, currentLine,
206 bindingPathPrefix, false, (ViewModel) model, collectionGroup, lineActions);
207
208 getCollectionGroupLineBuilder(lineBuilderContext).buildLine();
209 }
210 }
211
212
213
214
215
216
217
218
219
220 protected void initializeEditLineDialog(CollectionGroup collectionGroup, int lineIndex, Object currentLine,
221 Object model) {
222 if (!collectionGroup.isEditWithDialog()) {
223 return;
224 }
225
226 String lineSuffix = UifConstants.IdSuffixes.LINE + Integer.toString(lineIndex);
227
228
229 DialogGroup editLineDialog = ComponentUtils.copy(collectionGroup.getEditLineDialogPrototype());
230 editLineDialog.setId(ComponentFactory.EDIT_LINE_DIALOG + "_" + collectionGroup.getId() + lineSuffix);
231 editLineDialog.setRetrieveViaAjax(true);
232
233 if (refreshEditLineDialogContents(editLineDialog, model, collectionGroup, lineIndex)) {
234
235 currentLine = ((UifFormBase) model).getDialogDataObject();
236 setupEditLineDialog(editLineDialog, collectionGroup, lineIndex, lineSuffix, currentLine);
237 }
238
239
240 if (collectionGroup.getLineDialogs() == null || collectionGroup.getLineDialogs().isEmpty()) {
241 collectionGroup.setLineDialogs((new ArrayList<DialogGroup>()));
242 }
243 collectionGroup.getLineDialogs().add(editLineDialog);
244 }
245
246
247
248
249
250
251
252
253
254
255 protected void setupEditLineDialog(DialogGroup editLineDialog, CollectionGroup group, int lineIndex,
256 String lineSuffix, Object currentLine) {
257
258 Action editLineInDialogSaveAction = ComponentUtils.copy(group.getEditInDialogSaveActionPrototype());
259 editLineInDialogSaveAction.setId(editLineDialog.getId() + "_" +
260 ComponentFactory.EDIT_LINE_IN_DIALOG_SAVE_ACTION + Integer.toString(lineIndex));
261
262
263 Action cancelEditLineInDialogAction = (Action) ComponentFactory.
264 getNewComponentInstance(ComponentFactory.DIALOG_DISMISS_ACTION);
265 cancelEditLineInDialogAction.setId(editLineDialog.getId() + "_" +
266 ComponentFactory.DIALOG_DISMISS_ACTION + Integer.toString(lineIndex));
267 cancelEditLineInDialogAction.setRefreshId(group.getId());
268 cancelEditLineInDialogAction.setMethodToCall(UifConstants.MethodToCallNames.CLOSE_EDIT_LINE_DIALOG);
269 cancelEditLineInDialogAction.setDialogDismissOption("REQUEST");
270
271
272 List<Component> actionComponents = new ArrayList<Component>();
273 if (editLineDialog.getFooter().getItems() != null) {
274 actionComponents.addAll(editLineDialog.getFooter().getItems());
275 }
276
277 actionComponents.add(editLineInDialogSaveAction);
278 actionComponents.add(cancelEditLineInDialogAction);
279 editLineDialog.getFooter().setItems(actionComponents);
280
281
282 List<Action> actions = ViewLifecycleUtils.getElementsOfTypeDeep(actionComponents, Action.class);
283 group.getCollectionGroupBuilder().initializeActions(actions, group, lineIndex);
284 editLineDialog.getFooter().setItems(actionComponents);
285
286
287
288 if (editLineDialog.getHeader().getUpperGroup().getItems() != null) {
289 List<Action> headerActions = ViewLifecycleUtils.getElementsOfTypeDeep(editLineDialog.getHeader().
290 getUpperGroup().getItems(), Action.class);
291 initializeActions(headerActions, group, lineIndex);
292 for (Action headerAction : headerActions) {
293 headerAction.setRefreshId(group.getId());
294 headerAction.setMethodToCall(UifConstants.MethodToCallNames.CLOSE_EDIT_LINE_DIALOG);
295 headerAction.setDialogDismissOption("REQUEST");
296 headerAction.setActionScript(null);
297 }
298 }
299
300
301 ContextUtils.updateContextForLine(editLineDialog, group, currentLine, lineIndex, lineSuffix);
302 }
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317 protected List<Integer> performCollectionFiltering(View view, Object model, CollectionGroup collectionGroup,
318 Collection<?> collection) {
319 List<Integer> filteredIndexes = new ArrayList<Integer>();
320 for (int i = 0; i < collection.size(); i++) {
321 filteredIndexes.add(Integer.valueOf(i));
322 }
323
324 if (Inactivatable.class.isAssignableFrom(collectionGroup.getCollectionObjectClass()) && !collectionGroup
325 .isShowInactiveLines()) {
326 List<Integer> activeIndexes = collectionGroup.getActiveCollectionFilter().filter(view, model,
327 collectionGroup);
328 filteredIndexes = ListUtils.intersection(filteredIndexes, activeIndexes);
329 }
330
331 for (CollectionFilter collectionFilter : collectionGroup.getFilters()) {
332 List<Integer> indexes = collectionFilter.filter(view, model, collectionGroup);
333 filteredIndexes = ListUtils.intersection(filteredIndexes, indexes);
334 if (filteredIndexes.isEmpty()) {
335 break;
336 }
337 }
338
339 return filteredIndexes;
340 }
341
342
343
344
345
346
347
348
349
350
351 protected void buildAddLine(View view, Object model, CollectionGroup collectionGroup) {
352
353 initializeNewCollectionLine(view, model, collectionGroup, false);
354
355 String addLineBindingPath = collectionGroup.getAddLineBindingInfo().getBindingPath();
356 List<? extends Component> actionComponents = getAddLineActionComponents(view, model, collectionGroup);
357
358 Object addLine = ObjectPropertyUtils.getPropertyValue(model, addLineBindingPath);
359
360 boolean bindToForm = false;
361 if (StringUtils.isBlank(collectionGroup.getAddLinePropertyName())) {
362 bindToForm = true;
363 }
364
365 LineBuilderContext lineBuilderContext = new LineBuilderContext(-1, addLine, addLineBindingPath, bindToForm,
366 (ViewModel) model, collectionGroup, actionComponents);
367
368 getCollectionGroupLineBuilder(lineBuilderContext).buildLine();
369 }
370
371
372
373
374
375
376
377
378
379
380
381
382
383 protected List<? extends Component> initializeLineActions(List<? extends Component> lineActions, View view,
384 CollectionGroup collectionGroup, Object collectionLine, int lineIndex) {
385 List<Component> actionComponents = new ArrayList<Component>(ComponentUtils.copy(lineActions));
386
387
388 if (collectionGroup.isEditWithDialog()) {
389 Action editLineActionForDialog = setupEditLineActionForDialog(collectionGroup,
390 UifConstants.IdSuffixes.LINE + Integer.toString(lineIndex), lineIndex,
391 actionComponents.size());
392 actionComponents.add(editLineActionForDialog);
393 }
394
395 for (Component actionComponent : actionComponents) {
396 view.getViewHelperService().setElementContext(actionComponent, collectionGroup);
397 }
398
399 String lineSuffix = UifConstants.IdSuffixes.LINE + Integer.toString(lineIndex);
400 ContextUtils.updateContextsForLine(actionComponents, collectionGroup, collectionLine, lineIndex, lineSuffix);
401
402 ExpressionEvaluator expressionEvaluator = ViewLifecycle.getExpressionEvaluator();
403 for (Component actionComponent : actionComponents) {
404 expressionEvaluator.evaluatePropertyExpression(view, actionComponent.getContext(), actionComponent,
405 UifPropertyPaths.ID, true);
406 }
407
408 ComponentUtils.updateIdsWithSuffixNested(actionComponents, lineSuffix);
409
410 List<Action> actions = ViewLifecycleUtils.getElementsOfTypeDeep(actionComponents, Action.class);
411 initializeActions(actions, collectionGroup, lineIndex);
412
413 return actionComponents;
414 }
415
416
417
418
419
420
421
422
423
424
425 protected Action setupEditLineActionForDialog(CollectionGroup collectionGroup, String lineSuffix, int lineIndex,
426 int actionIndex) {
427
428 Action action = ComponentUtils.copy(collectionGroup.getEditWithDialogActionPrototype());
429
430 action.setId(ComponentFactory.EDIT_LINE_IN_DIALOG_ACTION + "_" + collectionGroup.getId() +
431 lineSuffix + UifConstants.IdSuffixes.ACTION + actionIndex);
432
433 String actionScript = UifConstants.JsFunctions.SHOW_EDIT_LINE_DIALOG + "('" +
434 ComponentFactory.EDIT_LINE_DIALOG + "_" + collectionGroup.getId() + lineSuffix + "', '" +
435 collectionGroup.getBindingInfo().getBindingName() + "', " + lineIndex + ");";
436 action.setActionScript(actionScript);
437
438 return action;
439 }
440
441
442
443
444
445
446
447
448
449 public void initializeActions(List<Action> actions, CollectionGroup collectionGroup, int lineIndex) {
450 for (Action action : actions) {
451 if (ComponentUtils.containsPropertyExpression(action, UifPropertyPaths.ACTION_PARAMETERS, true)) {
452
453 action.getPropertyExpressions().put(
454 UifPropertyPaths.ACTION_PARAMETERS + "['" + UifParameters.SELECTED_COLLECTION_PATH + "']",
455 UifConstants.EL_PLACEHOLDER_PREFIX + "'" + collectionGroup.getBindingInfo().getBindingPath() +
456 "'" + UifConstants.EL_PLACEHOLDER_SUFFIX
457 );
458 action.getPropertyExpressions().put(
459 UifPropertyPaths.ACTION_PARAMETERS + "['" + UifParameters.SELECTED_COLLECTION_ID + "']",
460 UifConstants.EL_PLACEHOLDER_PREFIX + "'" + collectionGroup.getId() +
461 "'" + UifConstants.EL_PLACEHOLDER_SUFFIX
462 );
463 action.getPropertyExpressions().put(
464 UifPropertyPaths.ACTION_PARAMETERS + "['" + UifParameters.SELECTED_LINE_INDEX + "']",
465 UifConstants.EL_PLACEHOLDER_PREFIX + "'" + Integer.toString(lineIndex) +
466 "'" + UifConstants.EL_PLACEHOLDER_SUFFIX
467 );
468 action.getPropertyExpressions().put(
469 UifPropertyPaths.ACTION_PARAMETERS + "['" + UifParameters.LINE_INDEX + "']",
470 UifConstants.EL_PLACEHOLDER_PREFIX + "'" + Integer.toString(lineIndex) +
471 "'" + UifConstants.EL_PLACEHOLDER_SUFFIX
472 );
473 } else {
474 action.addActionParameter(UifParameters.SELECTED_COLLECTION_PATH,
475 collectionGroup.getBindingInfo().getBindingPath());
476 action.addActionParameter(UifParameters.SELECTED_COLLECTION_ID, collectionGroup.getId());
477 action.addActionParameter(UifParameters.SELECTED_LINE_INDEX, Integer.toString(lineIndex));
478 action.addActionParameter(UifParameters.LINE_INDEX, Integer.toString(lineIndex));
479 }
480
481 if (StringUtils.isBlank(action.getRefreshId()) && StringUtils.isBlank(action.getRefreshPropertyName())) {
482 action.setRefreshId(collectionGroup.getId());
483 }
484
485
486
487 if (action.isPerformClientSideValidation()) {
488 String preSubmitScript = "var valid=" + UifConstants.JsFunctions.VALIDATE_LINE + "('" +
489 collectionGroup.getBindingInfo().getBindingPath() + "'," + Integer.toString(lineIndex) +
490 ");";
491
492
493 if (StringUtils.isNotBlank(action.getPreSubmitCall())) {
494 preSubmitScript = ScriptUtils.appendScript(preSubmitScript,
495 "if (valid){valid=function(){" + action.getPreSubmitCall() + "}();}");
496 }
497
498 preSubmitScript += " return valid;";
499
500 action.setPreSubmitCall(preSubmitScript);
501 action.setPerformClientSideValidation(false);
502 }
503 }
504 }
505
506
507
508
509
510
511
512
513
514
515
516
517
518 protected List<? extends Component> getAddLineActionComponents(View view, Object model,
519 CollectionGroup collectionGroup) {
520 String lineSuffix = UifConstants.IdSuffixes.ADD_LINE;
521
522 List<? extends Component> lineActionComponents = ComponentUtils.copyComponentList(
523 collectionGroup.getAddLineActions(), lineSuffix);
524
525 List<Action> actions = ViewLifecycleUtils.getElementsOfTypeDeep(lineActionComponents, Action.class);
526
527 if (collectionGroup.isAddWithDialog() && (collectionGroup.getAddLineDialog().getFooter() != null) &&
528 !collectionGroup.getAddLineDialog().getFooter().getItems().isEmpty()) {
529 List<Action> addLineDialogActions = ViewLifecycleUtils.getElementsOfTypeDeep(
530 collectionGroup.getAddLineDialog().getFooter().getItems(), Action.class);
531
532 if (addLineDialogActions != null) {
533 actions.addAll(addLineDialogActions);
534 }
535 }
536
537 for (Action action : actions) {
538 action.addActionParameter(UifParameters.SELECTED_COLLECTION_PATH,
539 collectionGroup.getBindingInfo().getBindingPath());
540 action.addActionParameter(UifParameters.SELECTED_COLLECTION_ID, collectionGroup.getId());
541 action.setJumpToIdAfterSubmit(collectionGroup.getId());
542 action.addActionParameter(UifParameters.ACTION_TYPE, UifParameters.ADD_LINE);
543
544 boolean isPageUpdateAction = StringUtils.isNotBlank(action.getAjaxReturnType())
545 && action.getAjaxReturnType().equals(UifConstants.AjaxReturnTypes.UPDATEPAGE.getKey());
546
547 if (StringUtils.isBlank(action.getRefreshId()) && !isPageUpdateAction) {
548 action.setRefreshId(collectionGroup.getId());
549 }
550
551 if (collectionGroup.isAddWithDialog() && view instanceof FormView && ((FormView) view)
552 .isValidateClientSide()) {
553 action.setPerformClientSideValidation(true);
554 }
555
556 if (action.isPerformClientSideValidation()) {
557 String preSubmitScript = "var valid=" + UifConstants.JsFunctions.VALIDATE_ADD_LINE + "('" +
558 collectionGroup.getId() + "');";
559
560
561 if (StringUtils.isNotBlank(action.getPreSubmitCall())) {
562 preSubmitScript = ScriptUtils.appendScript(preSubmitScript,
563 "if (valid){valid=function(){" + action.getPreSubmitCall() + "}();}");
564 }
565
566 preSubmitScript += "return valid;";
567
568 action.setPreSubmitCall(preSubmitScript);
569 action.setPerformClientSideValidation(false);
570 } else if (collectionGroup.isAddWithDialog()) {
571 action.setPreSubmitCall("closeLightbox(); return true;");
572 }
573 }
574
575
576 String addLinePath = collectionGroup.getAddLineBindingInfo().getBindingPath();
577 Object addLine = ObjectPropertyUtils.getPropertyValue(model, addLinePath);
578
579 ContextUtils.updateContextForLine(collectionGroup.getAddLineDialog(), collectionGroup, addLine, -1, lineSuffix);
580 ContextUtils.updateContextsForLine(actions, collectionGroup, addLine, -1, lineSuffix);
581
582 return lineActionComponents;
583 }
584
585
586
587
588
589
590
591
592
593
594
595 public void initializeNewCollectionLine(View view, Object model, CollectionGroup collectionGroup,
596 boolean clearExistingLine) {
597 Object newLine = null;
598
599
600 if (StringUtils.isBlank(collectionGroup.getAddLinePropertyName())) {
601
602 if (!(model instanceof UifFormBase)) {
603 throw new RuntimeException(
604 "Cannot create new collection line for group: " + collectionGroup.getPropertyName()
605 + ". Model does not extend " + UifFormBase.class.getName()
606 );
607 }
608
609
610 Map<String, Object> newCollectionLines = ObjectPropertyUtils.getPropertyValue(model,
611 UifPropertyPaths.NEW_COLLECTION_LINES);
612 if (newCollectionLines == null) {
613 newCollectionLines = new HashMap<String, Object>();
614 ObjectPropertyUtils.setPropertyValue(model, UifPropertyPaths.NEW_COLLECTION_LINES, newCollectionLines);
615 }
616
617
618 String newCollectionLineKey = KRADUtils.translateToMapSafeKey(
619 collectionGroup.getBindingInfo().getBindingPath());
620 String addLineBindingPath = UifPropertyPaths.NEW_COLLECTION_LINES + "['" + newCollectionLineKey + "']";
621 collectionGroup.getAddLineBindingInfo().setBindingPath(addLineBindingPath);
622
623
624 if (!newCollectionLines.containsKey(newCollectionLineKey) || (newCollectionLines.get(newCollectionLineKey)
625 == null) || clearExistingLine) {
626
627 newLine = KRADUtils.createNewObjectFromClass(collectionGroup.getCollectionObjectClass());
628 newCollectionLines.put(newCollectionLineKey, newLine);
629 }
630 } else {
631
632 Object addLine = ObjectPropertyUtils.getPropertyValue(model,
633 collectionGroup.getAddLineBindingInfo().getBindingPath());
634 if ((addLine == null) || clearExistingLine) {
635 newLine = KRADUtils.createNewObjectFromClass(collectionGroup.getCollectionObjectClass());
636 ObjectPropertyUtils.setPropertyValue(model, collectionGroup.getAddLineBindingInfo().getBindingPath(),
637 newLine);
638 }
639 }
640
641
642 if (newLine != null) {
643 ViewLifecycle.getHelper().applyDefaultValuesForCollectionLine(collectionGroup, newLine);
644 }
645 }
646
647
648
649
650
651
652
653
654
655
656
657
658 public boolean refreshEditLineDialogContents(DialogGroup dialogGroup, Object model, CollectionGroup collectionGroup,
659 int lineIndex) {
660 UifFormBase formBase = (UifFormBase) model;
661 String selectedCollectionPath = formBase.getActionParamaterValue(UifParameters.SELECTED_COLLECTION_PATH);
662 String selectedLineIndex = formBase.getActionParamaterValue(UifParameters.SELECTED_LINE_INDEX);
663
664 if (ViewLifecycle.isRefreshLifecycle()
665 && StringUtils.equals(dialogGroup.getId(), ViewLifecycle.getRefreshComponentId())
666 && (StringUtils.equals(selectedCollectionPath, collectionGroup.getBindingInfo().getBindingPath())
667 || StringUtils.startsWith(selectedCollectionPath, UifPropertyPaths.DIALOG_DATA_OBJECT))
668 && StringUtils.equals(selectedLineIndex, Integer.toString(lineIndex))) {
669 return true;
670 }
671 return false;
672 }
673
674
675
676
677
678
679
680 public CollectionGroupLineBuilder getCollectionGroupLineBuilder(LineBuilderContext lineBuilderContext) {
681 return new CollectionGroupLineBuilder(lineBuilderContext);
682 }
683
684
685
686
687 private static class IndexedElement {
688
689
690
691
692 final int index;
693
694
695
696
697 final Object element;
698
699
700
701
702
703
704
705 private IndexedElement(int index, Object element) {
706 this.index = index;
707 this.element = element;
708 }
709 }
710 }