Скачиваний:
18
Добавлен:
01.05.2014
Размер:
663 б
Скачать
/*
 * Budget.java
 *
 * Created on April 20, 2007, 12:24 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package ic.core;

/**
 *
 * @author adm
 */
public class Budget {
    
    private float cash;
    
    public boolean decreaseCash(float c) {
        if ( c <= cash ) {
            cash -= c;
            return true;
        }
        else
            return false;
    }
    
    public float cash() {
        return cash;
    }
    /** Creates a new instance of Budget */
    public Budget(float startValue) {
        this.cash = startValue;
    }
    
}
Соседние файлы в папке core