Class AndQuery

java.lang.Object
ghidra.program.database.util.AndQuery
All Implemented Interfaces:
Query

public class AndQuery extends Object implements Query
Combines two queries such that this query is the logical "AND" of the two queries. If the first query does not match, then the second query is not executed.
  • Constructor Details

    • AndQuery

      public AndQuery(Query q1, Query q2)
      Construct a new AndQuery from two other queries.
      Parameters:
      q1 - the first query
      q2 - the second query
  • Method Details

    • matches

      public boolean matches(DBRecord record)
      Description copied from interface: Query
      Returns true if the given record matches the querys condition.
      Specified by:
      matches in interface Query
      Parameters:
      record - the record to test for compliance.
      See Also: