blob: 5e2e6704ad3c79af1b64c694ec248df447c52a12 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// Blaise Doughan - 2.2 - initial implementation
package org.eclipse.persistence.testing.jaxb.qname;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
@XmlRootElement
@XmlType(propOrder={"element", "list"})
public class Root {
private QName attribute;
private QName element;
private List<QName> list;
public Root() {
list = new ArrayList<QName>();
}
@XmlAttribute
public QName getAttribute() {
return attribute;
}
public void setAttribute(QName qNameAttribute) {
this.attribute = qNameAttribute;
}
public QName getElement() {
return element;
}
public void setElement(QName qNameElement) {
this.element = qNameElement;
}
public List<QName> getList() {
return list;
}
public void setList(List<QName> qNameList) {
this.list = qNameList;
}
@Override
public boolean equals(Object obj) {
if(null == obj || obj.getClass() != getClass()) {
return false;
}
Root test = (Root) obj;
if(!equals(attribute, test.getAttribute())) {
return false;
}
if(!equals(element, test.getElement())) {
return false;
}
if(list.size() != test.getList().size()) {
return false;
}
for(int x=0; x<list.size(); x++) {
if(!equals(list.get(x), test.getList().get(x))) {
return false;
}
}
return true;
}
private boolean equals(QName control, QName test) {
if(null == control) {
return null == test;
} else {
return control.equals(test);
}
}
}