public final class org.apache.commons.collections.functors.NullIsTruePredicate extends java.lang.Object implements org.apache.commons.collections.functors.PredicateDecorator, java.io.Serializable
{
private static final long serialVersionUID;
private final org.apache.commons.collections.Predicate iPredicate;
public static org.apache.commons.collections.Predicate nullIsTruePredicate(org.apache.commons.collections.Predicate)
{
org.apache.commons.collections.functors.NullIsTruePredicate v;
org.apache.commons.collections.Predicate v;
java.lang.NullPointerException v;
v := @parameter: org.apache.commons.collections.Predicate;
if v != null goto label;
v = new java.lang.NullPointerException;
specialinvoke v.<java.lang.NullPointerException: void <init>(java.lang.String)>("Predicate must not be null");
throw v;
label:
v = new org.apache.commons.collections.functors.NullIsTruePredicate;
specialinvoke v.<org.apache.commons.collections.functors.NullIsTruePredicate: void <init>(org.apache.commons.collections.Predicate)>(v);
return v;
}
public void <init>(org.apache.commons.collections.Predicate)
{
org.apache.commons.collections.functors.NullIsTruePredicate v;
org.apache.commons.collections.Predicate v;
v := @this: org.apache.commons.collections.functors.NullIsTruePredicate;
v := @parameter: org.apache.commons.collections.Predicate;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<org.apache.commons.collections.functors.NullIsTruePredicate: org.apache.commons.collections.Predicate iPredicate> = v;
return;
}
public boolean evaluate(java.lang.Object)
{
org.apache.commons.collections.Predicate v;
org.apache.commons.collections.functors.NullIsTruePredicate v;
java.lang.Object v;
boolean v;
v := @this: org.apache.commons.collections.functors.NullIsTruePredicate;
v := @parameter: java.lang.Object;
if v != null goto label;
return 1;
label:
v = v.<org.apache.commons.collections.functors.NullIsTruePredicate: org.apache.commons.collections.Predicate iPredicate>;
v = interfaceinvoke v.<org.apache.commons.collections.Predicate: boolean evaluate(java.lang.Object)>(v);
return v;
}
public org.apache.commons.collections.Predicate[] getPredicates()
{
org.apache.commons.collections.functors.NullIsTruePredicate v;
org.apache.commons.collections.Predicate[] v;
org.apache.commons.collections.Predicate v;
v := @this: org.apache.commons.collections.functors.NullIsTruePredicate;
v = newarray (org.apache.commons.collections.Predicate)[1];
v = v.<org.apache.commons.collections.functors.NullIsTruePredicate: org.apache.commons.collections.Predicate iPredicate>;
v[0] = v;
return v;
}
}