Skip to content

Commit

Permalink
add javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
david-mackessy committed Jan 17, 2025
1 parent 0d7c320 commit c934b2f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,13 @@
*/
public interface ExpressionStore extends GenericStore<Expression> {

/**
* Update all expressions whose expression property contains the 'find' value. When updating, it
* replaces all occurrences of 'find' with 'replace'.
*
* @param find text to search for
* @param replace text used to replace 'find'
* @return number of entities updated
*/
int updateExpressionContaining(String find, String replace);
}

0 comments on commit c934b2f

Please sign in to comment.