/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package homework7;

/**
 *
 * @author kvaradar
 */
public class MyWord {


    private String element;
    private int frequency;

    MyWord(String s) {
        element = s;
        frequency = 1;
    }

    public String getElement() {
        return element;
    }

    public int getFrequency() {
        return frequency;
    }

    public void incrementFrequency() {
        frequency++;
    }

}
