Android Open Source - khandroid Fragment Attached Functionality






From Project

Back to project page khandroid.

License

The source code is released under:

Apache License

If you think the Android project khandroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2012-2014 Ognyan Bankov
 */*w  w w . j  a va 2  s.  c  o  m*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.github.khandroid.ui_functionality;

import javax.inject.Inject;

import android.app.Activity;
import android.app.Fragment;
import android.os.Bundle;


public class FragmentAttachedFunctionality implements FragmentAttachable {
    private boolean mCalled1;
    private boolean mCalled2;
    private boolean mCalled3;
    private boolean mCalled4;
    private boolean mCalled5;
    private boolean mCalled6;
    private boolean mCalled7;
    private boolean mCalled8;
    private boolean mCalled9;
    private boolean mCalled10;

    private HostFragment mFragment;


    @Inject
    public FragmentAttachedFunctionality() {
        super();
    }


    public void attachTo(HostFragment fragment) {
        mFragment = fragment;
    }


    @Override
    public void fragmentLifeCycleEvent(int type, Bundle b) {
        switch (type) {
            case HostFragment.EVENT_ON_ATTACH:
                mCalled1 = false;
                onAttach();
                if (!mCalled1) {
                    throw new SuperNotCalledException("Super not called for onCreate()");
                }
                break;
            case HostFragment.EVENT_ON_CREATE:
                mCalled2 = false;
                onCreate(b);
                if (!mCalled2) {
                    throw new SuperNotCalledException("Super not called for onCreate()");
                }
                break;
            case HostFragment.EVENT_ON_ACTIVITY_CREATED:
                mCalled3 = false;
                onActivityCreated(b);
                if (!mCalled3) {
                    throw new SuperNotCalledException("Super not called for onActivityCreated()");
                }
                break;
            case HostFragment.EVENT_ON_START:
                mCalled4 = false;
                onStart();
                if (!mCalled4) {
                    throw new SuperNotCalledException("Super not called for onStart()");
                }
                break;
            case HostFragment.EVENT_ON_RESUME:
                mCalled5 = false;
                onResume();
                if (!mCalled5) {
                    throw new SuperNotCalledException("Super not called for onResume()");
                }
                break;
            case HostFragment.EVENT_ON_PAUSE:
                mCalled6 = false;
                onPause();
                if (!mCalled6) {
                    throw new SuperNotCalledException("Super not called for onPause()");
                }
                break;
            case HostFragment.EVENT_ON_STOP:
                mCalled7 = false;
                onStop();
                if (!mCalled7) {
                    throw new SuperNotCalledException("Super not called for onStop()");
                }
                break;
            case HostFragment.EVENT_ON_DESTROY:
                mCalled8 = false;
                onDestroy();
                if (!mCalled8) {
                    throw new SuperNotCalledException("Super not called for onStop()");
                }
                break;
            case HostFragment.EVENT_ON_DETACH:
                mCalled9 = false;
                onDetach();
                if (!mCalled9) {
                    throw new SuperNotCalledException("Super not called for onStop()");
                }
                break;
            case HostFragment.EVENT_ON_SAVE_INSTANCE_STATE:
                mCalled10 = false;
                onSaveInstanceState(b);
                if (!mCalled10) {
                    throw new SuperNotCalledException("Super not called for onStop()");
                }
                break;

        }

    }


    public void onAttach() {
        mCalled1 = true;
    }


    public void onCreate(Bundle savedInstanceState) {
        mCalled2 = true;
    }


    public void onActivityCreated(Bundle savedInstanceState) {
        mCalled3 = true;
    }


    public void onStart() {
        mCalled4 = true;
    }


    public void onResume() {
        mCalled5 = true;
    }


    public void onPause() {
        mCalled6 = true;
    }


    public void onStop() {
        mCalled7 = true;
    }


    public void onDestroy() {
        mCalled8 = true;
    }


    public void onDetach() {
        mCalled9 = true;
    }


    public void onSaveInstanceState(Bundle savedInstanceState) {
        mCalled10 = true;
    }


    public HostFragment getFragment() {
        return mFragment;
    }


    public Activity getActivity() {
        Activity ret = null;

        Fragment f = getFragment();
        if (f != null) {
            ret = f.getActivity();
        }

        return ret;
    }
}




Java Source Code List

com.github.khandroid.JsonFunctionality.java
com.github.khandroid.http.functionality.HttpFunctionalityImpl.java
com.github.khandroid.http.functionality.HttpFunctionalityWCookiesImpl.java
com.github.khandroid.http.functionality.HttpFunctionalityWCookies.java
com.github.khandroid.http.functionality.HttpFunctionality.java
com.github.khandroid.http.misc.FileDownloader.java
com.github.khandroid.http.misc.KhandroidBasicResponseHandler.java
com.github.khandroid.http.misc.SynchronizedCookieStore.java
com.github.khandroid.http.request.GetRequestBuilder.java
com.github.khandroid.http.request.PostRequestBuilder.java
com.github.khandroid.http.request.RequestBuilder.java
com.github.khandroid.http.ssl.DefaultSslHttpClient.java
com.github.khandroid.http.ssl.KhandroidX509TrustManager.java
com.github.khandroid.http.ssl.SslSocketFactory.java
com.github.khandroid.kat.ActivityKatExecutorFunctionality.java
com.github.khandroid.kat.FragmentKatExecutorFunctionality.java
com.github.khandroid.kat.KatExecutor.java
com.github.khandroid.kat.KhandroidAsyncTask.java
com.github.khandroid.misc.ActivityUtils.java
com.github.khandroid.misc.DateTimeHelper.java
com.github.khandroid.misc.ImageUtils.java
com.github.khandroid.misc.LocationUtils.java
com.github.khandroid.misc.NetUtils.java
com.github.khandroid.misc.StringUtils.java
com.github.khandroid.misc.ViewUtils.java
com.github.khandroid.rest.InvalidJsonString.java
com.github.khandroid.rest.InvalidResponseException.java
com.github.khandroid.rest.KhRestExchangeBuilder.java
com.github.khandroid.rest.KhRestFunctionalityImpl.java
com.github.khandroid.rest.KhRestFunctionality.java
com.github.khandroid.rest.KhRestResult.java
com.github.khandroid.rest.MalformedResponseException.java
com.github.khandroid.rest.RawRestResult.java
com.github.khandroid.rest.RestAsyncTask.java
com.github.khandroid.rest.RestExchangeBuilder.java
com.github.khandroid.rest.RestExchangeFailedException.java
com.github.khandroid.rest.RestExchangeOutcome.java
com.github.khandroid.rest.RestExchange.java
com.github.khandroid.rest.RestFragmentFunctionality.java
com.github.khandroid.rest.RestFunctionalityImpl.java
com.github.khandroid.rest.RestFunctionality.java
com.github.khandroid.rest.RestPersistFragment.java
com.github.khandroid.rest.RestResponse.java
com.github.khandroid.rest.RestResult.java
com.github.khandroid.rest.UnexpectedResponseException.java
com.github.khandroid.state.StateEvent.java
com.github.khandroid.state.StateMachineImpl.java
com.github.khandroid.state.StateMachine.java
com.github.khandroid.state.StateSkeleton.java
com.github.khandroid.state.State.java
com.github.khandroid.state_app.AppStateContextImpl.java
com.github.khandroid.state_app.AppStateContext.java
com.github.khandroid.state_app.AppState.java
com.github.khandroid.state_app.InvalidAppStateException.java
com.github.khandroid.state_app.SkeletonAppState.java
com.github.khandroid.state_app.StateEvent.java
com.github.khandroid.ui_functionality.ActivityAttachable.java
com.github.khandroid.ui_functionality.ActivityAttachedFunctionality.java
com.github.khandroid.ui_functionality.ActivityUniqueAttachedFunctionality.java
com.github.khandroid.ui_functionality.FragmentAttachable.java
com.github.khandroid.ui_functionality.FragmentAttachedFunctionality.java
com.github.khandroid.ui_functionality.FragmentUniqueAttachedFunctionality.java
com.github.khandroid.ui_functionality.HostActivity.java
com.github.khandroid.ui_functionality.HostFragment.java
com.github.khandroid.ui_functionality.SuperNotCalledException.java
com.github.khandroid.views.ImageViewWithContextMenuInfo.java
com.github.khandroid.volley.GetJsonObjectRequestBuilder.java
com.github.khandroid.volley.GetStringRequestBuilder.java
com.github.khandroid.volley.GetVRestRequestBuilder.java
com.github.khandroid.volley.PostJsonObjectRequestBuilder.java
com.github.khandroid.volley.PostRequestBuilderImpl.java
com.github.khandroid.volley.PostRequestBuilder.java
com.github.khandroid.volley.PostStringRequestBuilder.java
com.github.khandroid.volley.PostVRestRequestBuilder.java
com.github.khandroid.volley.RequestBuilder.java
com.github.khandroid.volley.VRestRequestBuilder.java
com.github.khandroid.volley.VRestRequest.java