Back to project page GitHubContributionsApp.
The source code is released under:
GNU General Public License
If you think the Android project GitHubContributionsApp 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.githubcardandroidapp.app.BusinessObjects; /*from www. j a v a2s. c o m*/ import android.graphics.Bitmap; import java.util.Date; public interface GitHubProfileDetails { String getName(); String getBlog(); Date getCreatedAt(); int getNumberOfFollowers(); Bitmap getAvatarBitmap(); }