📄 abstractaccountview.java
字号:
// AbstractAccountView.java
// AbstractAccountView is an abstract class that represents
// a view of an Account.
package com.deitel.advjhtp1.mvc.account;
// Java core packages
import java.util.*;
import java.awt.*;
// Java extension packages
import javax.swing.JPanel;
import javax.swing.border.*;
public abstract class AbstractAccountView extends JPanel
implements Observer {
// Account to observe
private Account account;
// AbstractAccountView constructor
public AbstractAccountView( Account observableAccount )
throws NullPointerException
{
// do not allow null Accounts
if ( observableAccount == null )
throw new NullPointerException();
// update account data member to new Account
account = observableAccount;
// register as an Observer to receive account updates
account.addObserver( this );
// set display properties
setBackground( Color.white );
setBorder( new MatteBorder( 1, 1, 1, 1, Color.black ) );
}
// get Account for which this view is an Observer
public Account getAccount()
{
return account;
}
// update display with Account balance
protected abstract void updateDisplay();
// receive updates from Observable Account
public void update( Observable observable, Object object )
{
updateDisplay();
}
}
/***************************************************************
* (C) Copyright 2002 by Deitel & Associates, Inc. and *
* Prentice Hall. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have *
* used their best efforts in preparing the book. These *
* efforts include the development, research, and testing of *
* the theories and programs to determine their effectiveness. *
* The authors and publisher make no warranty of any kind, *
* expressed or implied, with regard to these programs or to *
* the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for *
* incidental or consequential damages in connection with, or *
* arising out of, the furnishing, performance, or use of *
* these programs. *
***************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -