// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.phone_state; import java.io.Serializable; import java.util.Date; public class NotificationCountTimeSegment implements Serializable { Date end; Date start; int value; public NotificationCountTimeSegment() { } public NotificationCountTimeSegment(Date date, Date date1, int i) { start = date; end = date1; value = i; } public Date getEnd() { return end; } public Date getStart() { return start; } public int getValue() { return value; } public void setEnd(Date date) { end = date; } public void setStart(Date date) { start = date; } public void setValue(int i) { value = i; } }