/tags/3.3.0/src/org/getopt/luke/TermInfo.java
Java | 14 lines | 10 code | 4 blank | 0 comment | 0 complexity | fa6a0f3c59888cfc87d3ae1f60c9b752 MD5 | raw file
1package org.getopt.luke; 2 3import org.apache.lucene.index.Term; 4 5public class TermInfo { 6 public Term term; 7 public int docFreq; 8 9 public TermInfo(Term t, int df) { 10 this.term = t; 11 this.docFreq = df; 12 } 13 14}