Back to project page BoxSorter.
The source code is released under:
GNU General Public License
If you think the Android project BoxSorter 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 com.silverhillapps.boxsorter.loader; // w w w . j ava 2 s .c o m import com.silverhillapps.boxsorter.entities.Element; import com.silverhillapps.boxsorter.entities.InitialPositionConfig; /** * This abstract class determines the structure of a loader * @author salva * */ public abstract class InitialConfLoader { public abstract InitialPositionConfig loadElements(); public abstract Element addElement(); }