Back to project page android-appwidget-cirrus.
The source code is released under:
MIT License
If you think the Android project android-appwidget-cirrus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2014 Wayne D Grant (www.waynedgrant.com) Licensed under the MIT License */ /*from www . j a v a 2 s. c om*/ package com.waynedgrant.cirrus.clientraw; public class ClientRawRequest { private int appWidgetId; private ClientRawUrl clientRawUrl; public ClientRawRequest(int appWidgetId, ClientRawUrl clientRawUrl) { this.appWidgetId = appWidgetId; this.clientRawUrl = clientRawUrl; } public int getAppWidgetId() { return appWidgetId; } public ClientRawUrl getClientRawUrl() { return clientRawUrl; } }