Back to project page slider.
The source code is released under:
Apache License
If you think the Android project slider 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 de.devisnik.sliding; /* www. j a va 2 s . c o m*/ import de.devisnik.sliding.impl.RobotFrame; import de.devisnik.sliding.impl.Frame; public class FrameFactory { private FrameFactory() { } public static IFrame create(int dimX, int dimY) { return new Frame(dimX, dimY); } public static IRobotFrame createRobot(int dimX, int dimY, IRandom random) { return new RobotFrame(dimX, dimY, random); } }