
Добавил:
Studfiles2
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз:
Предмет:
Файл:Курсовая работа / InternetConnection / src / ic / core / Budget
.java /*
* 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;
}
}
* 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