Android Open Source - AndroidWallet Balance Item






From Project

Back to project page AndroidWallet.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

com.aurionx.wallet.BalanceItem.java
com.aurionx.wallet.BalancesListAdapter.java
com.aurionx.wallet.GlobalState.java
com.aurionx.wallet.LoginActivity.java
com.aurionx.wallet.MainActivity.java
com.aurionx.wallet.PinActivity.java
com.aurionx.wallet.SettingsActivity.java
com.aurionx.wallet.WalletActivity.java
com.aurionx.wallet.currencyName.java
com.codebutler.android_websockets.HybiParser.java
com.codebutler.android_websockets.SocketIOClient.java
com.codebutler.android_websockets.WebSocketClient.java
com.ripple.Account.java
com.ripple.Blobvault.java
com.ripple.NetworkState.java
com.ripple.NetworkUtil.java
com.ripple.RippleWS.java