blob: 28eaf953fcc04f70777743f9c32dc171c405b59b [file] [log] [blame]
package org.eclipse.team.internal.ccvs.core;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Interface for an visitor of the IManagedResources.
*/
public interface ICVSResourceVisitor {
public void visitFile(ICVSFile file) throws CVSException;
public void visitFolder(ICVSFolder folder) throws CVSException;
}