Android Open Source - Give-Me-Ltc-Android-App Miner






From Project

Back to project page Give-Me-Ltc-Android-App.

License

The source code is released under:

Apache License

If you think the Android project Give-Me-Ltc-Android-App 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.hpritch5.give_me_ltc;
//from w  w  w  .jav  a  2  s.c om

// Probably don't need this, but leaving for now.
public class Miner {
  
  private final String username;
  private final double confirmedRewards;
  private final double roundEstimate;
  private final int totalHashrate;
  private final double payoutHistory;
  private final int roundShares;
  
  public Miner(String username, double confirmedRewards, double roundEstimate,
      int totalHashrate, double payoutHistory, int roundShares) {
    this.username = username;
    this.confirmedRewards = confirmedRewards;
    this.roundEstimate = roundEstimate;
    this.totalHashrate = totalHashrate;
    this.payoutHistory = payoutHistory;
    this.roundShares = roundShares;
  }

  public String getUsername() {
    return username;
  }

  public double getConfirmedRewards() {
    return confirmedRewards;
  }

  public double getRoundEstimate() {
    return roundEstimate;
  }

  public double getTotalHashrate() {
    return totalHashrate;
  }
  public double getPayoutHistory() {
    return payoutHistory;
  }

  public int getRoundShares() {
    return roundShares;
  }
  
}




Java Source Code List

com.google.cloud.backend.android.CloudBackendActivity.java
com.google.cloud.backend.android.CloudBackendAsync.java
com.google.cloud.backend.android.CloudBackendMessaging.java
com.google.cloud.backend.android.CloudBackend.java
com.google.cloud.backend.android.CloudCallbackHandler.java
com.google.cloud.backend.android.CloudEndpointUtils.java
com.google.cloud.backend.android.CloudEntity.java
com.google.cloud.backend.android.CloudQuery.java
com.google.cloud.backend.android.Consts.java
com.google.cloud.backend.android.F.java
com.google.cloud.backend.android.GCMIntentService.java
com.google.cloud.backend.android.mobilebackend.MobilebackendRequestInitializer.java
com.google.cloud.backend.android.mobilebackend.MobilebackendRequest.java
com.google.cloud.backend.android.mobilebackend.Mobilebackend.java
com.google.cloud.backend.android.mobilebackend.model.EntityDto.java
com.google.cloud.backend.android.mobilebackend.model.EntityListDto.java
com.google.cloud.backend.android.mobilebackend.model.FilterDto.java
com.google.cloud.backend.android.mobilebackend.model.Filter.java
com.google.cloud.backend.android.mobilebackend.model.QueryDto.java
com.hpritch5.give_me_ltc.ChatActivity.java
com.hpritch5.give_me_ltc.HomeActivity.java
com.hpritch5.give_me_ltc.IntentIntegrator.java
com.hpritch5.give_me_ltc.IntentResult.java
com.hpritch5.give_me_ltc.MainActivity.java
com.hpritch5.give_me_ltc.Miner.java
com.hpritch5.give_me_ltc.MiningWorker.java
com.hpritch5.give_me_ltc.PrefManager.java