What is the relationship difference the canvas class and the graphics class?
No Answer is Posted For this Question
Be the First to Post Answer
How does the garbage collector works in java?
What is the default size of set in java?
What is the advantage of preparedstatement over statement?
What is the is a and has a relation ship in oops concept in java?
watz the difference between abstract class and interface? Which one u ill choose as a designer?
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.
Where we write javascript code in html page?
What are thread safe functions?
What advantage do java's layout managers provide over traditional windowing systems?
What are the advantages of java over cpp?
what is the difference between static class and singleton class? can we create static class?
2 Answers L&T, Octazen, Vamsi Labs,
If an application has multiple classes in it, is it okay to have a main method in more than one class?