blob: f1e2cc3fb3d8f5a774ab3488468b4de6ffec861f [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.core.runtime.jobs.ISchedulingRule;
import org.eclipse.jface.progress.IElementCollector;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.internal.ccvs.core.CVSTag;
import org.eclipse.team.internal.ccvs.core.ICVSRemoteResource;
import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
import org.eclipse.team.internal.ccvs.ui.ICVSUIConstants;
import org.eclipse.ui.progress.IDeferredWorkbenchAdapter;
public class CVSTagElement extends CVSModelElement implements IDeferredWorkbenchAdapter {
CVSTag tag;
ICVSRepositoryLocation root;
public CVSTagElement(CVSTag tag, ICVSRepositoryLocation root) {
this.tag = tag;
this.root = root;
}
public ICVSRepositoryLocation getRoot() {
return root;
}
public CVSTag getTag() {
return tag;
}
public boolean equals(Object o) {
if (!(o instanceof CVSTagElement))
return false;
CVSTagElement t = (CVSTagElement) o;
if (!tag.equals(t.tag))
return false;
return root.equals(t.root);
}
public int hashCode() {
return root.hashCode() ^ tag.hashCode();
}
public ImageDescriptor getImageDescriptor(Object object) {
if (!(object instanceof CVSTagElement))
return null;
if (tag.getType() == CVSTag.BRANCH || tag.getType() == CVSTag.HEAD) {
return CVSUIPlugin.getPlugin().getImageDescriptor(
ICVSUIConstants.IMG_TAG);
} else if (tag.getType() == CVSTag.VERSION) {
return CVSUIPlugin.getPlugin().getImageDescriptor(
ICVSUIConstants.IMG_PROJECT_VERSION);
} else {
// This could be a Date tag
return null;
}
}
public String getLabel(Object o) {
if (!(o instanceof CVSTagElement))
return null;
return ((CVSTagElement) o).tag.getName();
}
public String toString() {
return tag.getName();
}
public Object getParent(Object o) {
if (!(o instanceof CVSTagElement))
return null;
return ((CVSTagElement) o).root;
}
protected Object[] fetchChildren(Object o, IProgressMonitor monitor) throws TeamException {
ICVSRemoteResource[] children = CVSUIPlugin.getPlugin().getRepositoryManager().getFoldersForTag(root, tag, monitor);
if (getWorkingSet() != null)
children = CVSUIPlugin.getPlugin().getRepositoryManager().filterResources(getWorkingSet(), children);
return children;
}
public void fetchDeferredChildren(Object o, IElementCollector collector, IProgressMonitor monitor) {
try {
collector.add(fetchChildren(o, monitor), monitor);
} catch (TeamException e) {
CVSUIPlugin.log(e);
}
}
public ISchedulingRule getRule() {
return new BatchSimilarSchedulingRule("org.eclipse.team.cvs.ui.model.tagelement"); //$NON-NLS-1$
}
public boolean isContainer() {
return true;
}
}