256257258259260261262263
} else if ( PathImplementor.class.isInstance( expression ) ) { return new BooleanAssertionPredicate( this, expression, Boolean.TRUE ); } else { return new BooleanExpressionPredicate( this, expression ); } }
255256257258259260261262
254255256257258259260261
250251252253254255256257
public Predicate wrap(Expression<Boolean> expression) { if ( Predicate.class.isInstance( expression ) ) { return ( ( Predicate ) expression ); } else { return new BooleanExpressionPredicate( this, expression ); } }
257258259260261262263264