blob: b6a15d38d1ca3ca84517745e9686d935ba560fce [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:
// Denise Smith - June 14, 2013
package org.eclipse.persistence.testing.jaxb.xmlelements;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
@XmlType(name = "")
@XmlRootElement(name = "root")
public class Root {
@XmlElements({
@XmlElement(name = "string", type = String.class),
@XmlElement(name = "root", type = Root.class)
})
protected List<Object> children;
@XmlAttribute(name = "theName")
protected String name;
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Root root = (Root) o;
if (children != null ? !children.equals(root.children) : root.children != null) return false;
if (name != null ? !name.equals(root.name) : root.name != null) return false;
return true;
}
@Override
public int hashCode() {
int result = children != null ? children.hashCode() : 0;
result = 31 * result + (name != null ? name.hashCode() : 0);
return result;
}
}