ArticleGenerator(int dictWordCnt, int minWordLen, int maxWordLen,
int pageWidth) {
random = new Random(System.nanoTime());
dict = new Dictionary(random, dictWordCnt, minWordLen, maxWordLen, 100);
this.pageWidth = pageWidth;
lastLineLenGen = new Flat(random, 1, pageWidth);
paragraphLineLenGen = new Flat(random, pageWidth * 3 / 4, pageWidth);
paragraphLenGen = new Flat(random, 1, 40);
}