/******************************************************************************* * 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.namespaces; import java.util.ArrayList; import java.util.List; import org.eclipse.persistence.oxm.XMLRoot; public class Root { List companies; public Root() { companies = new ArrayList(); } public void setCompanies(List companies) { this.companies = companies; } public List getCompanies() { return companies; } public boolean equals(Object o) { try { Root theRoot = (Root)o; if (theRoot.getCompanies().size() != getCompanies().size()) { return false; } /*if ((!theRoot.getCompanies().containsAll(getCompanies())) || (!getCompanies().containsAll(theRoot.getCompanies()))) { return false; }*/ for (int i = 0; i < getCompanies().size(); i++) { Object first = getCompanies().get(i); Object second = theRoot.getCompanies().get(i); if (first instanceof Company && second instanceof Company) { if (!first.equals(second)) { return false; } } else if (first instanceof XMLRoot && second instanceof XMLRoot) { if (!(((XMLRoot)first).getLocalName().equals(((XMLRoot)second).getLocalName()))) { return false; } if (!(((XMLRoot)first).getNamespaceURI().equals(((XMLRoot)second).getNamespaceURI()))) { return false; } } else { return false; } } } catch (ClassCastException e) { return false; } return true; } public String toString() { String string = "Root:"; for (int i = 0; i < getCompanies().size(); i++) { string += getCompanies().get(i).toString(); } return string; } }