Package proguard.io
Interface DataEntryFilter
-
- All Known Implementing Classes:
DataEntryClassInfoFilter
,DataEntryDirectoryFilter
,DataEntryNameFilter
,DataEntryParentFilter
,ProcessingFlagDataEntryFilter
public interface DataEntryFilter
This interface provides a method to filter data entries.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accepts(DataEntry dataEntry)
Checks whether the filter accepts the given data entry.
-
-
-
Method Detail
-
accepts
boolean accepts(DataEntry dataEntry)
Checks whether the filter accepts the given data entry.- Parameters:
dataEntry
- the data entry to filter.- Returns:
- a boolean indicating whether the filter accepts the given data entry.
-
-