ProGuard

proguard.io
Class DataEntryParentFilter

java.lang.Object
  extended byproguard.io.DataEntryParentFilter
All Implemented Interfaces:
DataEntryFilter

public class DataEntryParentFilter
extends Object
implements DataEntryFilter

This DataEntryFilter delegates filtering to a DataEntryFilter for its parent.


Constructor Summary
DataEntryParentFilter(DataEntryFilter dataEntryFilter)
          Creates a new ParentFilter.
 
Method Summary
 boolean accepts(DataEntry dataEntry)
          Checks whether the filter accepts the given data entry.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataEntryParentFilter

public DataEntryParentFilter(DataEntryFilter dataEntryFilter)
Creates a new ParentFilter.

Parameters:
dataEntryFilter - the filter that will be applied to the data entry's parent.
Method Detail

accepts

public boolean accepts(DataEntry dataEntry)
Description copied from interface: DataEntryFilter
Checks whether the filter accepts the given data entry.

Specified by:
accepts in interface DataEntryFilter
Parameters:
dataEntry - the data entry to filter.
Returns:
a boolean indicating whether the filter accepts the given data entry.

ProGuard