Back to project page acceptableLosses.
The source code is released under:
MIT License
If you think the Android project acceptableLosses listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package acceptableLosses.work.jobs; /*from w w w . ja v a2s.c om*/ import acceptableLosses.components.Resume; import com.stewsters.util.math.Point3i; /** * A unit of work. */ public interface Job { public boolean satisfiedBy(Resume resume); public Point3i getStartPos(); // This is the distance to public int getWorkDistance(); // The entity assigned to this public void setAssignee(int id); public int getAssignee(); }