Back to project page Planets-Gradle.
The source code is released under:
Apache License
If you think the Android project Planets-Gradle 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.andrewq.planets.util; /*from w w w . jav a 2s. com*/ /** * Created by Andrew Quebe on 4/14/14. */ public class RowItem { private String title; private int icon; public RowItem(String title, int icon) { this.title = title; this.icon = icon; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getIcon() { return icon; } public void setIcon(int icon) { this.icon = icon; } }