// 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.communication.notifications; // Referenced classes of package com.olio.communication.notifications: // LookNotification public class LookNotificationBuilder { private LookNotification mLookNotification; public LookNotificationBuilder() { mLookNotification = new LookNotification(); } public LookNotification build() { return mLookNotification; } public LookNotificationBuilder setAssetBundleLocalUrl(String s) { mLookNotification.setAssetBundleLocalUrl(s); return this; } public LookNotificationBuilder setAssetBundleWebUrl(String s) { mLookNotification.setAssetBundleWebUrl(s); return this; } public LookNotificationBuilder setCurrent(Boolean boolean1) { mLookNotification.setCurrent(boolean1); return this; } public LookNotificationBuilder setExampleImageLocalUrl(String s) { mLookNotification.setExampleImageLocalUrl(s); return this; } public LookNotificationBuilder setExampleImageWebUrl(String s) { mLookNotification.setExampleImageWebUrl(s); return this; } public LookNotificationBuilder setLookId(String s) { mLookNotification.setLookId(s); return this; } public LookNotificationBuilder setName(String s) { mLookNotification.setName(s); return this; } }