Package ghidra.framework.model
Interface DomainFileFilter
public interface DomainFileFilter
Interface to indicate whether a domain file should be included in a list or
set of domain files.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
accept
(DomainFile df) Tests whether or not the specified domain file should be included in a domain file list.default boolean
Determine if linked folders represented by a link-file should be followed.
-
Method Details
-
accept
Tests whether or not the specified domain file should be included in a domain file list.- Parameters:
df
- The domain file to be tested- Returns:
true
if and only ifdf
-
followLinkedFolders
default boolean followLinkedFolders()Determine if linked folders represented by a link-file should be followed. If this method is not implemented the default will returntrue
.- Returns:
- true if linked-folders should be followed or false to ignore.
-