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

package ic.core;

/**
 *
 * @author adm
 */
public class FurnitureSalesCompany extends SalesCompany{
    
    public FurnitureSalesCompany(String s) {
        super(s);
        this.name = s;
    }
    
    public boolean saleFurniture(Budget b, String furnitureName) {
        Float price = (Float)super.priceList.get(furnitureName);
        float p = price.floatValue();
        if(b.cash() < p) {
            return false;
        }
        
        return true;
    }
}
Соседние файлы в папке core