⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 balancecommand.java

📁 国外的数据结构与算法分析用书
💻 JAVA
字号:
package Commands;

import Interfaces.StaffInterface;
import Sets.AccountSetAccess;
import Accounts.Account;
import SystemEntities.*;
import dslib.exception.ItemNotFoundUosException;

/**	Command to obtain the balance for an account. */
public class BalanceCommand extends Command
{
	/**	The interface to be used for this command. */
	protected StaffInterface cmdInterface;

	/**	The balance command constructor. */
	public BalanceCommand(StaffInterface userInterface)
	{
		cmdInterface = userInterface;
	}

	/**	Execute the balance command. */
	public void execute()
	{
		date = Clock.date();
		int acctID = cmdInterface.getAcctID();
		try
		{
			acct = (Account) AccountSetAccess.dictionary().obtain(new Integer(acctID));
		} catch (ItemNotFoundUosException e) 
		{
			cmdInterface.sendMessage("Account number " + acctID + " not found.");
			return;
		}
		Printer.printBalance(acct.number(), acct.balance(), date);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -