I'm probably missing something incredibly obvious here... I'm trying to call MoreLikethis.setStopWords(Set words). I've got a list of stop words in Python, but I can't figure out how to turn that into a Java Set. I tried "lucene.HashSet(set(words)", "lucene.HashSet(lucene.ArrayList(JArray("string")(words)))", and so forth, without much luck.
Bill