After learning the difference between a listener and adapter, let us dig more specifically with WindowListener and WindowAdapter. First let us discuss interms of API. Following are the signatures as defined in Java API. 1. public interface WindowListener extends EventListener 2. public abstract class WindowAdapter implements WindowListener, WindowStateListener, WindowFocusListener WindowListener is an interface and WindowAdapter […]
↧