What are listeners in java and explain ?
Answers were Sorted based on User's Feedback
Answer / raman
A listener is called when the user does something to the user
interface that causes an event. Altho these events usually
come from the user interface.
Named Inner Class Listeners -
Anonymous Inner Class Listeners -
Top-level Listeners -
Action and AbstractAction -
External Listeners -
Subclassing a component and overriding processActionEvent().
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / raman
Twelve types of event are used in Java AWT. These are as
follows :
1. ActionEvent
2. AdjustmentEvent
3. ComponentEvent
4. ContainerEvent
5. FocusEvent
6. InputEvent
7. ItemEvent
8. KeyEvent
9. MouseEvent
10. PaintEvent
11. TextEvent
12. WindowEvent
| Is This Answer Correct ? | 0 Yes | 2 No |
If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?
What is difference between iterator and enumeration in java?
What is the use of beaninfo?
Can we write any code after throw statement?
What are the data types supported by java?
What is the is a and has a relation ship in oops concept in java?
What restrictions are placed on method overloading in java programming?
What is int short for?
Explain the difference between the public, private, final, protected, and default modifiers?
What does singleton class mean?
What's a method in programming?
What is %02d?