Java J2EE (14736)
J2ME (151)
Java Related AllOther (507)
What is an association?
What is the life cycle of actionform?
What is cascade delete?
What is the need of hibernate tools when orm tools can be used?
Is there a particularly good ide to use with struts?
What are the ways to instantiate the class class?
Describe some assignments that are executed by servlet container?
What is spring boot used for? : Spring Boot
What is the difference between C++ and Java and your preferences?
What are abstract classes and anonymous classes?
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.
What are struts in java?
How httpservlet is different from the genericservlet?
What is hbm xml?
What is difference between array and arraylist in java?