/* * GmailCountUsage.java * * Created on November 18, 2005, 11:16 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package gmailchecker.common; /** * * @author Administrator */ public class GmailCountUsage { private int newMailCount=0; private int usage=0; private boolean problematic=false; /** Creates a new instance of GmailCountUsage */ public GmailCountUsage(int newMailCount, int usage, boolean problematic){ this.setNewMailCount(newMailCount); this.setUsage(usage); this.setProblematic(problematic); } public int getNewMailCount() { return newMailCount; } public void setNewMailCount(int newMailCount) { this.newMailCount = newMailCount; } public int getUsage() { return usage; } public void setUsage(int usage) { this.usage = usage; } public boolean isProblematic() { return problematic; } public void setProblematic(boolean problematic) { this.problematic = problematic; } }