1 package org.contineo.documan; 2 3 8 public class Keyword { 9 10 private String word; 11 private int count; 12 13 16 public Keyword() { 17 word = ""; 18 count = 0; 19 } 20 21 25 public int getCount() { 26 return count; 27 } 28 29 33 public void setCount(int count) { 34 this.count = count; 35 } 36 37 41 public String getWord() { 42 return word; 43 } 44 45 49 public void setWord(String word) { 50 this.word = word; 51 } 52 } 53 | Popular Tags |