Rev 1712 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package com.gebauz.bauzoid2.util;
public interface IAsyncLoadable
{
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();
}