Subversion Repositories AndroidProjects

Rev

Blame | Last modification | View Log | RSS feed

package com.gebauz.bauzoid2.util;

public interface IAsyncResource
{
        public static class Tracker
        {
                private boolean mIsAsync = false;
               
                public Tracker()
                {
                }
               
                public void setAsync()
                {
                        mIsAsync = true;
                }
               
                public boolean isAsync()
                {
                        return mIsAsync;
                }
        }
       
        /** Call Tracker.setAsync() in the overriden method. */
        public void initAsync();
       
       
}