/********************************************************************** * Copyright (c) 2005-2009 ant4eclipse project team. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nils Hartmann, Daniel Kasmeroglu, Gerd Wuetherich **********************************************************************/ package org.ant4eclipse.lib.pydt.model; import org.ant4eclipse.lib.core.Assure; /** * Resolved record used to identify an eclipse project. * * @author Daniel Kasmeroglu (Daniel.Kasmeroglu@Kasisoft.net) */ public class ResolvedProjectEntry implements ResolvedPathEntry { private String _projectname; private String _owningproject; /** * Sets up this entry with the name of the project. * * @param owningproject * The name of the related eclipse project. Neither <code>null</code> nor empty. * @param name * The name of the project. Neither <code>null</code> nor empty. */ public ResolvedProjectEntry(String owningproject, String name) { Assure.nonEmpty("owningproject", owningproject); Assure.nonEmpty("name", name); this._owningproject = owningproject; this._projectname = name; } /** * {@inheritDoc} */ public String getOwningProjectname() { return this._owningproject; } /** * {@inheritDoc} */ public ReferenceKind getKind() { return ReferenceKind.Project; } /** * Returns the name of the referred project. * * @return The name of the referred project. Neither <code>null</code> nor empty. */ public String getProjectname() { return this._projectname; } /** * {@inheritDoc} */ @Override public boolean equals(Object object) { if (this == object) { return true; } if (object == null) { return false; } if (object.getClass() != getClass()) { return false; } ResolvedProjectEntry other = (ResolvedProjectEntry) object; if (!this._owningproject.equals(other._owningproject)) { return false; } return this._projectname.equals(other._projectname); } /** * {@inheritDoc} */ @Override public int hashCode() { int result = this._owningproject.hashCode(); result = 31 * result + this._projectname.hashCode(); return result; } /** * {@inheritDoc} */ @Override public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append("[ResolvedProjectEntry:"); buffer.append(" _owningproject: "); buffer.append(this._owningproject); buffer.append(", _projectname: "); buffer.append(this._projectname); buffer.append("]"); return buffer.toString(); } } /* ENDCLASS */