java.util.TimerTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imp-1.0-stub Show documentation
Show all versions of imp-1.0-stub Show documentation
Stub of the Information Module Profile v1.0
The newest version!
package java.util;
public abstract class TimerTask implements Runnable {
protected TimerTask() {}
public boolean cancel() {
return false;
}
public abstract void run();
public long scheduledExecutionTime() {
return 0;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy