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.entities; //from www . j a va 2 s .c om import java.util.ArrayList; import java.util.List; /** * This class stores all the information needed for making the initial render over the canvas. * @author salva * */ public class InitialPositionConfig { private List<Element> elements; public InitialPositionConfig(){ this.elements = new ArrayList<Element>(); } public List<Element> getElements() { return elements; } public void setElements(List<Element> elements) { this.elements = elements; } public void addElement(Element e){ this.elements.add(e); } public int getSize(){ return this.elements.size(); } }