Top
Previous Next
Java Review

Week 5 - Composition, GUIs, and Applets

Topics

Abstract Windowing Toolkit

Interfaces vs. Inheritance

Event Driven Programming

Typical of most modern programming applications:
while (true) {

  event = waitForSomethingInterestingToHappen();

  callThingThatRegisteredInterest( event );

}
Java Graphical User Interfaces rely on classes that implements interface