blob: 2d9f6f81204568f2d3c1a18d8864a3ad2ac08bdd [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// rbarkhouse - 2009-04-14 - 2.0 - Initial implementation
package org.eclipse.persistence.testing.oxm.mappings.compositecollection.keepaselement;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;
public class Elem {
protected List<Object> elem;
protected List<Object> elem1;
public List<Object> getElem() {
return elem;
}
public void setElem(List<Object> value) {
this.elem = value;
}
public List<Object> getElem1() {
return elem1;
}
public void setElem1(List<Object> value) {
this.elem1 = value;
}
public boolean equals(Object object) {
if (object instanceof Elem) {
Elem anotherElem = (Elem) object;
if (elem == null && anotherElem.getElem() != null) {
return false;
}
if (elem != null && anotherElem.getElem() == null) {
return false;
}
if (elem1 == null && anotherElem.getElem1() != null) {
return false;
}
if (elem1 != null && anotherElem.getElem1() == null) {
return false;
}
List<Object> obj1 = elem;
List<Object> obj2 = anotherElem.getElem();
if(obj1.size() != obj2.size()){
return false;
}
for(int i=0;i<obj1.size(); i++){
Object firstObject = obj1.get(i);
Object secondObject =obj2.get(i);
if ((firstObject instanceof Element) && (secondObject instanceof Element)) {
Element elem1 = (Element )firstObject;
Element elem2 = (Element) secondObject;
if (!(elem1.getLocalName().equals(elem2.getLocalName()))) {
return false;
}
} else {
return false;
}
}
List<Object> obj3 = elem;
List<Object> obj4 = anotherElem.getElem();
if(obj3.size() != obj4.size()){
return false;
}
for(int i=0;i<obj3.size(); i++){
Object firstObject = obj3.get(i);
Object secondObject =obj4.get(i);
if ((firstObject instanceof Element) && (secondObject instanceof Element)) {
Element elem1 = (Element )firstObject;
Element elem2 = (Element) secondObject;
if (!(elem1.getLocalName().equals(elem2.getLocalName()))) {
return false;
}
} else {
return false;
}
}
// Passed all equality tests
return true;
} else {
return false;
}
}
}