blob: 87f3ab1a5c18b81c940c0e7bbdc32cc670000457 [file] [log] [blame]
/*
* Copyright (c) 2011, 2021 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.3 - initial implementation
package org.eclipse.persistence.testing.jaxb.annotations.xmlpath.predicate;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement(name="root")
@XmlType(propOrder={"name", "nameList"})
public class QNameRoot {
private QName name;
private List<QName> nameList;
public QNameRoot() {
nameList = new ArrayList<QName>(2);
}
@XmlPath("qname[@classifier='single']/text()")
public QName getName() {
return name;
}
public void setName(QName name) {
this.name = name;
}
@XmlPath("qname[@classifier='many']/text()")
public List<QName> getNameList() {
return nameList;
}
public void setNameList(List<QName> qNameList) {
this.nameList = qNameList;
}
@Override
public boolean equals(Object obj) {
if(null == obj || obj.getClass() != this.getClass()) {
return false;
}
QNameRoot test = (QNameRoot) obj;
if(null == name && null != test.getName()) {
return false;
} else if(!name.equals(test.getName())) {
return false;
}
List<QName> testNameList = test.getNameList();
int itemsSize = nameList.size();
if(itemsSize != testNameList.size()) {
return false;
}
for(int x=0; x<itemsSize; x++) {
if(!nameList.get(x).equals(testNameList.get(x))) {
return false;
}
}
return true;
}
}