blob: 9034552f1758b37be352b1f94d2b5cc65a8716f8 [file] [log] [blame]
/*
* Copyright (c) 1998, 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:
// mmacivor - June 05/2008 - 1.0 - Initial implementation
package org.eclipse.persistence.testing.jaxb.xmlelementref;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.JAXBElement;
@XmlRootElement(name="employee-single")
public class EmployeeSingle {
@XmlElementRef(name="integer-root", namespace="myns")
public JAXBElement<Integer> intRoot;
public boolean equals(Object emp) {
JAXBElement<Integer> root1 = this.intRoot;
JAXBElement<Integer> root2 = ((EmployeeSingle)emp).intRoot;
return root1.getName().equals(root2.getName()) && root1.getValue().equals(root2.getValue()) && root1.getDeclaredType() == root2.getDeclaredType();
}
}