adapter class ?
Answers were Sorted based on User's Feedback
Answer / janet
An adapter class provides an empty implementation of all
methods in an event listener interface.Adapter classes are
useful when you want to receive and process only some of
the events that are handled by a particular event listener
interface.you can define a new class to act lisener by
extending one of the adapter classes and implementing onlu
those events in which you are interested.
For ex: the MouseMotionListenerAdapter class has two
methods,mouseDragged() and mouseMoved(). The signatures of
these empty are exactly as defined in the
MouseMotionListener interface. If you are interested in
onlu mouse drag events,that you could simply extend
MouseMotionAdapter and implement mouseDragged().
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
adapter class provides empty implementation for
eventlistener interface
| Is This Answer Correct ? | 0 Yes | 0 No |
Give an example of call be reference significance.
What is the difference between preemptive scheduling and time slicing in java programming?
Explain when we should make an instance variable private.
What is the significance of continue jump statement? Explain with an example.
Is java code slower than native code?
I dont want to use serialzable in java is there any another concept so plz tell me
How many arguments can a method have java?
If goto and const is reserve words than why it is not work in java?
Why is prepared Statement, Callable Statement used for? What is the need of Batch updates?
Does anyone still use java?
What is the difference between C++ and Java and your preferences?
What is a method signature java?