1 package org.apache.lucene.search.highlight; 2 17 18 21 public class WeightedTerm 22 { 23 float weight; String term; public WeightedTerm (float weight,String term) 26 { 27 this.weight=weight; 28 this.term=term; 29 } 30 31 32 36 public String getTerm() 37 { 38 return term; 39 } 40 41 45 public float getWeight() 46 { 47 return weight; 48 } 49 50 54 public void setTerm(String term) 55 { 56 this.term = term; 57 } 58 59 63 public void setWeight(float weight) 64 { 65 this.weight = weight; 66 } 67 68 } 69 | Popular Tags |