/******************************************************************************* * 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: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.oxm.mappings.onetomany.keyontarget.eis.nestedownedtoexternalroot; import java.util.Vector; public class Company { private Vector departments; private String name; public Company() { departments = new Vector(); } public void addDepartment(Department newDepartment) { departments.add(newDepartment); } public Vector getDepartments() { return departments; } public void setDepartments(Vector newDepartments) { departments = newDepartments; } public String getName() { return name; } public void setName(String newName) { name = newName; } public String toString(){ String result = "COMPANY: "+ this.getName(); result += " DEPARTMENTS: "; for(int i=0; i<getDepartments().size();i++) { result+= getDepartments().elementAt(i); } return result; } public boolean equals(Object object) { if(!(object instanceof Company)) return false; Company companyObject = (Company)object; if((this.getName().equalsIgnoreCase(companyObject.getName())) && (((this.getDepartments() == null) && (companyObject.getDepartments() == null))|| (this.getDepartments().containsAll(companyObject.getDepartments()))) ) return true; return false; } }