1 /*
2 * Copyright (c) 2011-2024 PrimeFaces Extensions
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 * THE SOFTWARE.
21 */
22 package org.primefaces.extensions.model.dynaform;
23
24 import java.util.Objects;
25
26 /**
27 * Class representing a nested model inside of <code>DynaFormRow</code>.
28 *
29 * @author Sébastien Lepage / last modified by $Author$
30 * @version $Revision$
31 * @since 4.0.0
32 */
33 public class DynaFormModelElement extends AbstractDynaFormElement {
34
35 private static final long serialVersionUID = 1L;
36
37 private final DynaFormModel model;
38
39 public DynaFormModelElement(DynaFormModel model, int colspan, int rowspan, int row, int column, int position, boolean extended) {
40 super(colspan, rowspan, row, column, extended);
41 this.model = model;
42
43 for (final DynaFormControl control : model.getControls()) {
44 control.setPosition(position + control.getPosition());
45 control.generateKey();
46 }
47 }
48
49 public DynaFormModel getModel() {
50 return model;
51 }
52
53 @Override
54 public boolean equals(Object o) {
55 if (this == o) {
56 return true;
57 }
58 if (!(o instanceof DynaFormModelElement)) {
59 return false;
60 }
61 if (!super.equals(o)) {
62 return false;
63 }
64 DynaFormModelElement that = (DynaFormModelElement) o;
65 return Objects.equals(getModel(), that.getModel());
66 }
67
68 @Override
69 public int hashCode() {
70 return Objects.hash(super.hashCode(), getModel());
71 }
72 }