blob: a98d0138aaacae13470d769deb3184766496ef77 [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:
// Matt MacIvor - July 4th 2011
package org.eclipse.persistence.testing.jaxb.xmlmixed;
import java.util.ArrayList;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlMixed;
import jakarta.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name="root")
public class Root {
@XmlAttribute
private String attr;
@XmlMixed
private ArrayList<Object> objects;
@XmlElement
private String elem;
public ArrayList<Object> getObjects() {
return objects;
}
public void setObjects(ArrayList<Object> objects) {
this.objects = objects;
}
public String getAttr() {
return attr;
}
public void setAttr(String string) {
this.attr = string;
}
public String getElem() {
return elem;
}
public void setElem(String elem) {
this.elem = elem;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Root root = (Root) o;
if (attr != null ? !attr.equals(root.attr) : root.attr != null) return false;
if (elem != null ? !elem.equals(root.elem) : root.elem != null) return false;
if (objects != null ? !objects.equals(root.objects) : root.objects != null) return false;
return true;
}
@Override
public int hashCode() {
int result = attr != null ? attr.hashCode() : 0;
result = 31 * result + (objects != null ? objects.hashCode() : 0);
result = 31 * result + (elem != null ? elem.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "Root [attr=" + attr + ", objects=" + objects + ", elem=" + elem + "]";
}
}