blob: 3f75d89c0bc86e9938040649543ae5c326de9f4e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* 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);
}
/**
* Constructor for RemoteProjectsElement.
*/
public RemoteProjectsElement(ICVSRepositoryLocation root) {
super(CVSTag.DEFAULT, root);
}
/**
* 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;
}
/**
* @see java.lang.Object#equals(java.lang.Object)
*/
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);
}
/**
* @see org.eclipse.ui.model.IWorkbenchAdapter#getParent(java.lang.Object)
*/
public Object getParent(Object o) {
return null;
}
/**
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
if (root == null) return tag.hashCode();
return super.hashCode();
}
/**
* @see org.eclipse.team.internal.ccvs.ui.model.CVSModelElement#internalGetChildren(java.lang.Object, org.eclipse.core.runtime.IProgressMonitor)
*/
public Object[] fetchChildren(Object o, IProgressMonitor monitor) throws TeamException {
if (root == null) return new Object[0];
return super.fetchChildren(o, monitor);
}
}