Back to project page UPPlatform_Android_SDK.
The source code is released under:
Apache License
If you think the Android project UPPlatform_Android_SDK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * @author Omer Muhammed//from w w w . j a v a2s . c o m * Copyright 2014 (c) Jawbone. All rights reserved. * */ package com.jawbone.upplatformsdk.datamodel; public class DataCollection { public Links links; public int size; public Links getLinks() { return links; } public void setLinks(Links links) { this.links = links; } public int getSize() { return size; } public void setSize(int size) { this.size = size; } }