// 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.data.object.assistant.rule; import android.os.Parcel; import com.olio.communication.messages.MessagePayload; import java.util.List; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; // Referenced classes of package com.olio.data.object.assistant.rule: // NotificationRule public class SilenceNotificationsRule extends NotificationRule { public static final android.os.Parcelable.Creator CREATOR = new android.os.Parcelable.Creator() { public MessagePayload createFromParcel(Parcel parcel) { return MessagePayload.unpackParcel(parcel); } public volatile Object createFromParcel(Parcel parcel) { return createFromParcel(parcel); } public MessagePayload[] newArray(int i) { return new SilenceNotificationsRule[i]; } public volatile Object[] newArray(int i) { return newArray(i); } }; public static final String TYPE_NAME = com/olio/data/object/assistant/rule/SilenceNotificationsRule.getSimpleName(); private static final long serialVersionUID = 0x5b5a733eee2c531fL; private List exceptions; private List remind; public SilenceNotificationsRule() { } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } else { SilenceNotificationsRule silencenotificationsrule = (SilenceNotificationsRule)obj; return (new EqualsBuilder()).appendSuper(super.equals(obj)).append(remind, silencenotificationsrule.remind).append(exceptions, silencenotificationsrule.exceptions).isEquals(); } } public com.olio.olios.model.record.SerializedRecord.SerializedRecordObject getDefaultObject() { return new SilenceNotificationsRule(); } public List getExceptions() { return exceptions; } public List getRemind() { return remind; } public int hashCode() { return (new HashCodeBuilder(17, 37)).appendSuper(super.hashCode()).append(remind).append(exceptions).toHashCode(); } public void setExceptions(List list) { exceptions = list; } public void setRemind(List list) { remind = list; } public String toString() { return (new StringBuilder()).append("SilenceNotificationsRule{remind=").append(remind).append("exceptions=").append(exceptions).append("} ").append(super.toString()).toString(); } public String typeName() { return TYPE_NAME; } }