Back to project page AndroidWallet.
The source code is released under:
MIT License
If you think the Android project AndroidWallet 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.aurionx.wallet; /*from w w w . j ava 2 s . c o m*/ public final class BalanceItem { private String currency; private double balance; private int imageNumber; public String getCurrency() { return currency; } public String getCurrencyName() { //return "name of currency"; return currencyName.get(currency); } public void setCurrency(String currency) { this.currency = currency; } public double getBalance() { return balance; } public void setBalance(double balance) { this.balance = balance; } public int getImageNumber() { return imageNumber; } public void setImageNumber(int imageNumber) { this.imageNumber = imageNumber; } }