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 . ja va 2 s.c o m * Copyright 2014 (c) Jawbone. All rights reserved. * */ package com.jawbone.upplatformsdk.datamodel; public class Links { public String next; public String prev; public String getNext() { return next; } public void setNext(String next) { this.next = next; } public String getPrev() { return prev; } public void setPrev(String prev) { this.prev = prev; } }