// 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.oliodevices.assist.app.fragments; import android.app.Activity; import com.oliodevices.assist.app.activities.SetupActivityCallbacks; // Referenced classes of package com.oliodevices.assist.app.fragments: // BaseFragment public abstract class SetupBaseFragment extends BaseFragment { SetupActivityCallbacks mCallbacks; public SetupBaseFragment() { } public abstract int getPageNumber(); public abstract int getTitleId(); public boolean isLogoVisible() { return false; } public boolean isSkipConfirmationNeeded() { return false; } public boolean isSkipVisible() { return false; } public void onAttach(Activity activity) { super.onAttach(activity); if (activity instanceof SetupActivityCallbacks) { mCallbacks = (SetupActivityCallbacks)activity; return; } else { throw new ClassCastException(String.format("%s must implement SetupActivityCallbacks", new Object[] { activity.getClass() })); } } public void onDetach() { super.onDetach(); mCallbacks = null; } public void onResume() { super.onResume(); mCallbacks.refreshUI(); } }