Back to project page MinerStatus.
The source code is released under:
Apache License
If you think the Android project MinerStatus 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 me.davidgreene.minerstatus.beans; //w w w . ja v a2s. com import java.io.Serializable; public interface Status extends Serializable { public String getUsername(); public String getDisplayCol1(); public String getDisplayCol2(); public String getUsernameLabel(); public String getDisplayCol1Label(); public String getDisplayCol2Label(); public void setApiKey(String apiKey); public String getApiKey(); }