package com.limegroup.gnutella.malware; /** *Delegate for the settings used by VirusScannerImpl to determine whether or * not antivirus is supported and enabled. * * THIS SHOULD NOT BE USED EXCEPT BY VirusScannerImpl AND ITS TESTS. */ interface AntivirusSupportConfiguration { boolean isTemporaryDirectoryInUse(); /** * @return true if the setting to use the virus scanner is enabled */ boolean isVirusScannerEnabledInSettings(); /** * @return true if the OS is an AVG compatible version of Windows */ boolean isAVGCompatibleWindows(); }