/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package documents; /** * * @author kvaradar */ public class MyWord { String word; int frequency; public MyWord (String w) { word = w; frequency = 1; } }