public class HelpElement{ int count = 0; String comment = null; public HelpElement(int i){ count = i; } public HelpElement(String str){ comment = str; } public HelpElement(int i, String str){ count = i; comment = str; } public void set(int i){ count = i; } public void set(String str){ comment = str; } public void set(int i, String str){ count = i; comment = str; } public void setString(String str){ comment = str; } public void decrese(){ count--; } public int get(){ return count; } public String getString(){ return comment; } }