// Interface file for HW 06, CS 112, Aug 9 2020 // See template file Concordance.java for Unit Tests public interface Concordable { // Insert a new (word,lineNumber) pair in the hash table public void insert(String word, int lineNumber); // prints out one entry for the concordance public void lookup(String word); // print out a list in order of words and their line numbers public void printConcordance(); }