package org.qii.weiciyuan.support.lib; import android.content.BroadcastReceiver; /** * User: qii * Date: 14-1-25 */ public abstract class RecordOperationAppBroadcastReceiver extends BroadcastReceiver { private boolean hasRegistered = false; private boolean hasUnRegistered = false; public boolean hasRegistered() { return hasRegistered; } public boolean hasUnRegistered() { return hasUnRegistered; } public void setHasRegistered(boolean value) { this.hasRegistered = value; } public void setHasUnRegistered(boolean value) { this.hasUnRegistered = value; } }