blob: 45ab84623ee3d2b75ab4b2b5f67104a2c4b9ebaa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.model;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.internal.ccvs.core.CVSTag;
import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
/**
* This model element provides the remote projects for a given repository and
* tag.
*/
public class RemoteProjectsElement extends CVSTagElement {
/**
* Constructor for RemoteProjectsElement.
*/
public RemoteProjectsElement() {
super(CVSTag.DEFAULT, null);
}
/**
* Sets the root.
* @param root The root to set
*/
public void setRoot(ICVSRepositoryLocation root) {
this.root = root;
}
/**
* Sets the tag.
* @param tag The tag to set
*/
public void setTag(CVSTag tag) {
this.tag = tag;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof RemoteProjectsElement)) return false;
RemoteProjectsElement element = (RemoteProjectsElement)o;
if (root == null) {
return element.root == null && tag.equals(element.tag);
}
return super.equals(o);
}
@Override
public Object getParent(Object o) {
return null;
}
@Override
public int hashCode() {
if (root == null) return tag.hashCode();
return super.hashCode();
}
@Override
public Object[] fetchChildren(Object o, IProgressMonitor monitor) throws TeamException {
if (root == null) return new Object[0];
return super.fetchChildren(o, monitor);
}
}