package com.limegroup.gnutella.malware; import java.io.File; public interface DangerousFileChecker { /** * Returns true if the file appears to be dangerous. This method may block. */ public boolean isDangerous(File file); }