Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Suppose want to add some functionality toStockWatcher
. For instance, assume you want to add a method that reports current stock price, regardless of whether the value has changed.However, if you make this change, all classes that implement the oldublic interface StockWatcher { oid valueChanged(TickerSymbol tickerSymbol, BigDecimal newValue); void currentValue(TickerSymbol tickerSymbol, BigDecimal newValue); }StockWatcher
interface will break because they don't implement the interface anymore. Programmers relying on this interface will protest loudly.Try to anticipate all uses for your interface up front and to specify it completely from the beginning. Given that this is often impossible, you may need either to create more interfaces later or to break your customer's code. For example, you could create a
StockWatcher
subinterface calledStockTracker
to declare the new method.Now users of your code can choose to upgrade to the new interface or to stick with the old interface.public interface StockTracker extends StockWatcher { void currentValue(TickerSymbol tickerSymbol, BigDecimal newValue); }
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.