Answer Posted / mayank
Yes it is Interface.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How is a variable stored in memory?
What are constructors in java?
Is char a data type in java?
What is structure of java heap? What is perm gen space in heap?
What is final keyword in java?
Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me
What is java jit compilers?
What happens to the Exception object after handling an exception?
what are three ways in which a thread can enter the waiting state? : Java thread
Explain the selection sort algorithm?
How to split arraylist elements in java?
Tell us something about different types of casting?
What Is Query Throttling in java?
Can we overload the constructors?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.