Package ghidra.util.filechooser
Interface GhidraFileFilter
- 
- All Known Implementing Classes:
- ExtensionFileFilter
 
 public interface GhidraFileFilterA interface that filters out all files except for those type extensions that it knows about. Extensions are of the type ".foo", which is typically found on Windows and Unix boxes, but not on Macinthosh. Case is ignored.
- 
- 
Field SummaryFields Modifier and Type Field Description static GhidraFileFilterALLA default implementation that shows all files.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(java.io.File pathname, GhidraFileChooserModel model)Tests whether or not the specified abstract pathname should be included in a pathname list.java.lang.StringgetDescription()Returns the description of this filter.
 
- 
- 
- 
Field Detail- 
ALLstatic final GhidraFileFilter ALL A default implementation that shows all files.
 
- 
 - 
Method Detail- 
acceptboolean accept(java.io.File pathname, GhidraFileChooserModel model)Tests whether or not the specified abstract pathname should be included in a pathname list.- Parameters:
- pathname- The abstract pathname to be tested
- model- The underlying file chooser model
- Returns:
- trueif and only if- pathnameshould be included
 
 - 
getDescriptionjava.lang.String getDescription() Returns the description of this filter.- Returns:
- the description of this filter
 
 
- 
 
-