NotFilterpublic 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 boolean | matches(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);
|
|