just to save works and use another computer to code

This commit is contained in:
hyb1996
2017-11-27 21:11:49 +08:00
parent 00c972ce8c
commit 9951ffae7a
30 changed files with 780 additions and 72 deletions

View File

@@ -0,0 +1,45 @@
package com.stardust.scriptdroid.timing;
import android.content.Intent;
/**
* Created by Stardust on 2017/11/27.
*/
public class TimedTask {
int mId;
boolean mDisposable;
boolean mScheduled;
public boolean isDisposable() {
return mDisposable;
}
public void setDisposable(boolean disposable) {
mDisposable = disposable;
}
public boolean isScheduled() {
return mScheduled;
}
public void setScheduled(boolean scheduled) {
mScheduled = scheduled;
}
public long getNextTime() {
return 0;
}
public int getId() {
return mId;
}
public Intent createIntent() {
return null;
}
}