blob: 6188516cfd1069f3a1b5652adfa8fd560e80fb78 [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.search.internal.core.text;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IResourceProxy;
import org.eclipse.core.resources.IResourceProxyVisitor;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.jface.util.Assert;
public class TypedResourceVisitor implements IResourceProxyVisitor {
private MultiStatus fStatus;
TypedResourceVisitor(MultiStatus status) {
Assert.isNotNull(status);
fStatus= status;
}
protected boolean visitFile(IResourceProxy proxy) throws CoreException {
return true;
}
protected boolean visitProject(IResourceProxy proxy) throws CoreException {
return true;
}
protected boolean visitFolder(IResourceProxy proxy) throws CoreException {
return true;
}
protected void addToStatus(CoreException ex) {
fStatus.add(ex.getStatus());
}
/*
* @see org.eclipse.core.resources.IResourceProxyVisitor#visit(org.eclipse.core.resources.IResourceProxy)
*/
public boolean visit(IResourceProxy proxy) {
try {
switch(proxy.getType()) {
case IResource.FILE:
return visitFile(proxy);
case IResource.FOLDER:
return visitFolder(proxy);
case IResource.PROJECT:
return visitProject(proxy);
default:
Assert.isTrue(false, "unknown resource type"); //$NON-NLS-1$
}
return false;
} catch (CoreException ex) {
addToStatus(ex);
return false;
}
}
}