Back to project page ArchPad.
The source code is released under:
GNU General Public License
If you think the Android project ArchPad 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.Andryyo.ArchPad.archeryFragment; //www . j a va 2s. co m import java.io.Serializable; /** * Created with IntelliJ IDEA. * User: ??????? * Date: 23.06.13 * Time: 19:34 * To change this template use File | Settings | File Templates. */ public class CDistanceTemplate implements Serializable{ private long targetId; private int numberOfEnds; private int arrowsInEnd; public CDistanceTemplate(int numberOfEnds, int arrowsInEnd, long targetId) { this.numberOfEnds = numberOfEnds; this.arrowsInEnd = arrowsInEnd; this.targetId = targetId; } public CDistance createDistance(long roundId, long arrowId) { return new CDistance(numberOfEnds, arrowsInEnd, targetId, arrowId,roundId); } }