
com.harium.suneidesis.task.BaseTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
The newest version!
package com.harium.suneidesis.task;
import com.harium.suneidesis.concept.Concept;
public abstract class BaseTask extends Concept implements Task {
protected boolean done = false;
protected boolean inProgress = false;
public BaseTask(String name) {
super(name);
}
@Override
public boolean canStart() {
return true;
}
@Override
public boolean isInProgress() {
return inProgress;
}
@Override
public boolean isDone() {
return done;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy