blob: e10ab5f82977a8b5d15f4b76997a9bf1e00b0e27 [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:
// Denise Smith - February 25, 2013
package org.eclipse.persistence.testing.jaxb.interfaces.choice;
import java.util.Properties;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAccessType;
@XmlAccessorType(XmlAccessType.FIELD)
public class MyObject implements MyInterface{
/*
* this part of the code is irrelevant, but shows that the issue
* does not reproduce with simple types..
*/
private byte test = 0x01;
private Byte test2 = 0x01;
private Properties props = new Properties();
private Properties anothernameproperties = new Properties();
@Override
public Properties getProperties() {
return props;
}
@Override
public void setProperties(Properties properties) {
this.props = properties;
}
@Override
public byte getTest() {
return test;
}
@Override
public void setTest(byte test) {
this.test = test;
}
@Override
public Byte getTest2() {
return test2;
}
@Override
public void setTest2(Byte test2) {
this.test2 = test2;
}
@Override
public Properties getAnothernameproperties() {
return anothernameproperties;
}
@Override
public void setAnothernameproperties(Properties anothernameproperties) {
this.anothernameproperties = anothernameproperties;
}
public boolean equals(Object obj){
if(obj instanceof MyObject){
MyObject compare = (MyObject)obj;
if(test != compare.test || !test2.equals(compare.test2)){
return false;
}
return this.props.equals(compare.props) && anothernameproperties.equals(compare.anothernameproperties);
}
return false;
}
}