1 package com.genimen.djeneric.repository.oql.core.nodes;2 3 import com.genimen.djeneric.repository.oql.core.MatchException;4 5 public interface BooleanExpression extends ValueExpression6 {7 public boolean isTrue(MatchingContext context) throws MatchException;8 }