FileDocCategorySizeDatePackage
NotFilter.javaAPI DocAndroid 5.1 API2118Thu Mar 12 22:22:42 GMT 2015com.android.server.firewall

NotFilter

public class NotFilter extends Object implements Filter

Fields Summary
private final Filter
mChild
public static final FilterFactory
FACTORY
Constructors Summary
private NotFilter(Filter child)

        mChild = child;
    
Methods Summary
public booleanmatches(IntentFirewall ifw, android.content.ComponentName resolvedComponent, android.content.Intent intent, int callerUid, int callerPid, java.lang.String resolvedType, int receivingUid)

        return !mChild.matches(ifw, resolvedComponent, intent, callerUid, callerPid, resolvedType,
                receivingUid);