blob: db409c087081b467b453e2c454ea38f6b577b249 [file] [log] [blame]
package org.eclipse.update.core;
import org.eclipse.core.runtime.CoreException;
/*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
/**
* Verify a feature
*/
public interface IVerifier {
/**
* Throws CoreException if the verification was unsucessful and the installation should not continue
*/
IVerificationResult verify(IFeature feature,ContentReference reference,InstallMonitor monitor) throws CoreException;
}