they asked class A{}
class B{}
class c{}
all the three class saved as a single file,there is no main
method in the file
and anothe class
M.java
class m
{
psvm(String args[])
{
// here the parent class can access
}
}
They had given one progam
final HashMap hm=new HashMap();
public void show()
{
hm.put("name",value);
}
in this prg here the final hashtable value can be changed in
put method,its the prg run?
Explain class A{}
class B{}
class C{}
all the three classes are saved in a single file name, what
the name should i provide to the file ,in what file name
should i run the program? Ple Explain
we use MainFrame and using os390 for operating system with
DB2 data base in IRAN and interest programing with java and
use webspere for world wide,please help me where i should
start?
Hi frnds Ima facing problm with tomcat configuration.kindly can
any one tell to me what is the mistake iam doing.i already
configured tomcat as fallowing
http://www.ibm.com/developerworks/opensource/library/os-eclipse-tomcat/
even though iam getting the PortNO .and changed with different
no of Ports but no working kindly can any one tell me what is the
mistake iam doing........?
9
What is the content reside in Use case Document?
251
Describe activation process?
152
what is mean by dll ?
Please answer me.
Advance thanks.
What are the sequence of steps to write pub or sub model
kind of application?
208
Hai friends I am MCA 2006 passout. Spend time in 1 yr for
teacing and 5 months in small s/w firm. worked in 4 or 5
months in few places. Presently I am writing bank exams. I
want to get back to IT sector. Are there any possibilities.
any growth prospects?. I am having some knowledge in core
and advanced java. I am so desperate. Any suggestions thanks
in advance. u can write to my mail mahidestiny@gmail.com
Hi Friends. I want complete technical flow of j2ee
project with following technologies.
jsp , servlet , Struts , Hibernate , (should follow mvc-2
design pattern) . with DAO ,DTO SERVICE layers .
17
how to deploy tomcatserver to weblogic server?
write d following steps?
74
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.