Code:
|
Code:
|
Code:
public class PerChanceTest extends PerChance{
public PerChanceTest() {
super();
sentences.add("here is a salad vegi1 #, vegi2 # and herb #.");
sentences.add("how about this salad vegi1 #, vegi2 # and herb #. it goes well with tuna fish");
UniqueItemSizeLimitedPriorityQueue temp = new UniqueItemSizeLimitedPriorityQueue();
temp.setLimit(3);
wordToList.put("vegi1", temp);
temp = new UniqueItemSizeLimitedPriorityQueue();
temp.setLimit(3);
wordToList.put("vegi2", temp);
temp = new UniqueItemSizeLimitedPriorityQueue();
temp.setLimit(3);
wordToList.put("herb", temp);
}
}
Code:
|