Android Open Source - CoinFlip Self Test Status






From Project

Back to project page CoinFlip.

License

The source code is released under:

GNU General Public License

If you think the Android project CoinFlip 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

/*
 *========================================================================
 * SelfTestStatus.java/*  w  w w .  ja v  a2s  .c  o  m*/
 * Jul 12, 2014 4:31 PM | variable
 * Copyright (c) 2014 Richard Banasiak
 *========================================================================
 * This file is part of CoinFlip.
 *
 *    CoinFlip is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation, either version 3 of the License, or
 *    (at your option) any later version.
 *
 *    CoinFlip is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with CoinFlip.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.banasiak.coinflip;

public class SelfTestStatus {

    // debugging tag
    private static final String TAG = SelfTestTask.class.getSimpleName();

    private int headsCount = 0;

    private int tailsCount = 0;

    private long startTime = 0;

    private long endTime = 0;

    public int getHeads() {
        return headsCount;
    }

    public int getTails() {
        return tailsCount;
    }

    public int getTotal() {
        return headsCount + tailsCount;
    }

    public void incrementHeads() {
        headsCount++;
    }

    public void incrementTails() {
        tailsCount++;
    }

    public double getHeadsPercentage() {
        return (double) headsCount / (double) getTotal();
    }

    public double getTailsPercentage() {
        return (double) tailsCount / (double) getTotal();
    }

    public long getStartTime() {
        return startTime;
    }

    public void setStartTime(long iTime) {
        startTime = iTime;
    }

    public long getEndTime() {
        return endTime;
    }

    public void setEndTime(long iTime) {
        endTime = iTime;
    }

    public long getElapsedTime() {
        return endTime - startTime;
    }

}




Java Source Code List

com.banasiak.coinflip.AboutActivity.java
com.banasiak.coinflip.CoinFlipActivity.java
com.banasiak.coinflip.CoinFlipWearActivity.java
com.banasiak.coinflip.DataLayerListenerService.java
com.banasiak.coinflip.InstallReceiver.java
com.banasiak.coinflip.SelfTestActivity.java
com.banasiak.coinflip.SelfTestStatus.java
com.banasiak.coinflip.SelfTestTask.java
com.banasiak.coinflip.Settings.java
com.banasiak.coinflip.ShakeListener.java
com.banasiak.coinflip.SliderPreference.java
com.banasiak.coinflip.lib.Animation.java
com.banasiak.coinflip.lib.ApplicationTest.java
com.banasiak.coinflip.lib.Coin.java
com.banasiak.coinflip.lib.CustomAnimationDrawable.java
com.banasiak.coinflip.lib.Util.java