Does Swing contains any heavy weight component?

Answers were Sorted based on User's Feedback



Does Swing contains any heavy weight component?..

Answer / varahala raju penmetsa

not components , in swings all top level Containers are
Heavy weight , JFrame,JWindow,JDialog,JApplet they do not
inherit from JComponent but they do from Component in AWT
thats y they are heavy weight .

cheers,

Is This Answer Correct ?    5 Yes 0 No

Does Swing contains any heavy weight component?..

Answer / jay

Yes. JFrame is Heavy Weight

Is This Answer Correct ?    4 Yes 0 No

Does Swing contains any heavy weight component?..

Answer / kalpit

With Swing only the top-level components are heavyweight:
JApplet,JFrame, JDialog, and JWindow.

Is This Answer Correct ?    4 Yes 2 No

Does Swing contains any heavy weight component?..

Answer / naresh tuhania

In swing all top-level components are heavyweight

Is This Answer Correct ?    2 Yes 0 No

Does Swing contains any heavy weight component?..

Answer / karthik

Yes ok

Example:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class xx extends JFrame
{

xx()
{
Container con=getContentPane();
//this Heavy weight component Button
con.add(new Button("hhhhhhhhhhhhhhhhh"));
setVisible(true);
setSize(200,300);
}
public static void main(String aa[])
{
new xx();
}
}

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Swing Interview Questions

Is swing better than awt?

0 Answers  


Why swings are used in java?

0 Answers  


What are the benefits if Swing over AWT?

0 Answers  


Can a class be it?s own event handler? Explain how to implement this?

0 Answers  


What is meant by JFC?

6 Answers   Mindlogicx, SDS,






Name the borders provided by Swing?

1 Answers   Accenture,


How do you swing an applet?

0 Answers  


How to generate bill in java swing?

0 Answers  


am searching for the job based on java, swing, currently working small company. they are not giving any salary slip, offer letter. so if i try outside for MNC's they start with previous company details. what should i do..? please help me to get job and make my career.

0 Answers   eClinicalWorks,


What is a swing day?

0 Answers  


What are the benefits of swing over awt?

0 Answers  


Write a program to paint the off-screen buffer in swings

0 Answers  


Categories