Package becker.util

Provides generally useful utilities for beginning programmers.

See:
          Description

Interface Summary
IModel Classes implementing IModel have a standard protocol for adding views (such as a graphical user interfaces).
IObservable Classes that are observed by others, as in the classic Model-View pattern, should implement the IObservable interface.
IObserver A class implementing IObserver is usually registered with a class implementing IObservable.
IView The IView interface provides a standard protocol for a model to notify a view of changes.
 

Class Summary
AbstractModel An implementation of IModel.
DateTime A class to represent an instant in time that is simpler to use than either Date or GregorianCalendar.
Observers An instance of Observers is usually used by a class implementing IObservable to store its list of observers.
Test Methods to assist in testing code.
Utilities Useful utility methods.
ViewList An instance of ViewList is usually used by a class implementing the model part of a model-view-controller to store its list of views.
 

Package becker.util Description

Provides generally useful utilities for beginning programmers.