Well … while reading to try to refresh my programming knowledge I am starting to have questions again.
By re-reading Kev’s coke and code tutorial I saw he used a private class extension of the KeyAdapter abstract class.While somewhere else I saw a class implementing the KeyListener interface.What is the difference?By checking the java doc I came to the conclusion that the only difference is that with KeyAdapter you can define whichever method you want , while with KeyListener you have to define all the abstract methods of the interface.
BUT … since I really want to learn corectly and since my personal conclusions more than often tend to be wrong , any clarifications here?What is the difference between those 2?