📄 abstractaccount.java
字号:
package Bank;
/**
* <ul>
* <li> <b>IDL Source</b> "Bank.idl"
* <li> <b>IDL Name</b> ::Bank::AbstractAccount
* <li> <b>Repository Id</b> IDL:Bank/AbstractAccount:1.0
* </ul>
* <b>IDL definition:</b>
* <pre>
* abstract valuetype AbstractAccount {
...
};
* </pre>
*/
public interface AbstractAccount extends org.omg.CORBA.portable.ValueBase {
/**
* <pre>
* void deposit (in float amount);
* </pre>
*/
abstract public void deposit (float amount);
/**
* <pre>
* void withdraw (in float amount)
raises (Bank.AccountOverdraft);
* </pre>
*/
abstract public void withdraw (float amount) throws Bank.AccountOverdraft;
/**
* <pre>
* float getBalance ();
* </pre>
*/
abstract public float getBalance ();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -