/******************************************************************************* * Copyright (c) 1998, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * mmacivor - January 09, 2009 - 1.1 - Initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.annotations.xmlcontainerproperty; import java.util.Vector; import javax.xml.bind.annotation.*; import org.eclipse.persistence.oxm.annotations.XmlContainerProperty; @XmlRootElement(name="employee") public class Employee { @XmlAttribute public int id; @XmlElement(name="first-name") public String firstName; @XmlElement(name="last-name") public String lastName; @XmlElement(name="address") public Address address; @XmlElementWrapper(name="phone-numbers") @XmlElement(name="number") public Vector<PhoneNumber> phoneNumbers; public boolean equals(Object e) { if(!(e instanceof Employee)) { return false; } Employee obj = (Employee)e; boolean equal = this.id == obj.id; equal = equal && this.firstName.equals(obj.firstName); equal = equal && this.lastName.equals(obj.lastName); equal = equal && this.address.equals(obj.address); if(this.phoneNumbers.size() != obj.phoneNumbers.size()) { return false; } for(int i = 0; i < phoneNumbers.size(); i++) { PhoneNumber num1 = phoneNumbers.get(i); PhoneNumber num2 = obj.phoneNumbers.get(i); equal = equal && num1.equals(num2); } return equal; } }