What is meant by Swing?

Answers were Sorted based on User's Feedback



What is meant by Swing?..

Answer / chnvganesh_mca

Swing is a library of GUI controls which improves upon
the Abstract Window Toolkit.

AWT uses operating system calls to draw components;
Swing draws components using its own methods. This gives
developers much greater flexibility in designing the look
and feel of their applications, while at the same time
ensuring that the applications maintain the same look and
feel across different platforms.

Swing provides significantly enhanced functionality,
such as actions, tables, trees, images buttons, tabs,
toolbars, and sliders.

Is This Answer Correct ?    23 Yes 2 No

What is meant by Swing?..

Answer / jitender singh

Swing is a library of GUI controls which improves upon
the Abstract Window Toolkit.

AWT uses operating system calls to draw components;
Swing draws components using its own methods. This gives
developers much greater flexibility in designing the look
and feel of their applications, while at the same time
ensuring that the applications maintain the same look and
feel across different platforms.

Swing provides significantly enhanced functionality,
such as actions, tables, trees, images buttons, tabs,
toolbars, and sliders.

swing is actuallly part of a larger family of java product
know as java foundation classes(JFC) which have many
features.swaing is used to create a feature rich user
interface with icon,images,tooltips and customized
controls.It is a part of the GUI components.

Is This Answer Correct ?    5 Yes 1 No

What is meant by Swing?..

Answer / ramya

Swing is basically a set of customisable graphical
components whose look-and-feel can be dictated at runtime.
• Pre-built look-and-feel: Motif, Windows, Macintosh,
Metal on a any platform
• Personal look-and-feel also definable

Is This Answer Correct ?    4 Yes 0 No

What is meant by Swing?..

Answer / rego

Basically swing is java framework it willAWT uses operating
system calls to draw components;

Swing draws components using its own methods. This gives
developers much greater flexibility in designing the look
and feel of their applications, while at the same time
ensuring that the applications maintain the same look and
feel across different platforms.

Is This Answer Correct ?    2 Yes 0 No

What is meant by Swing?..

Answer / harivardhan.a

when overlapping occur between lightweightcomponent and
heavyweight component,always heavy weight component is top

2)the lightweight component is one that "borrows" the
screen resources of an ancestic(it has no native resources)
so it is lightweight component

Is This Answer Correct ?    7 Yes 6 No

What is meant by Swing?..

Answer / manikandan

swing is a Framework.

Is This Answer Correct ?    3 Yes 3 No

What is meant by Swing?..

Answer / devi

Swing is a set of program component s for Java programmers that provide the ability to create graphical user interface ( GUI ) components, such as buttons and scroll bars, that are independent of the windowing system for specific operating system . Swing components are used with the Java Foundation Classes ( JFC ).

Is This Answer Correct ?    0 Yes 0 No

What is meant by Swing?..

Answer / mita swain

swing is actuallly part of a larger family of java product
know as java foundation classes(JFC) which have many
features.swaing is used to create a feature rich user
interface with icon,images,tooltips and customized
controls.It is a part of the GUI components.

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More Swing Interview Questions

What is java swing package?

0 Answers  


Why should any swing call back implementation execute quickly?

0 Answers  


How to render an html page using only swing.

0 Answers  


please any one explain this project: Minimizing recovery state in geographic ad hoc routing

1 Answers   IBM,


What is swing in java with example?

0 Answers  






In what context should the value of swing components be updated directly?

0 Answers  


What is content pane in swing?

0 Answers  


Is swing thread-safe?

0 Answers  


when i run Frame program, it display output in supparate window.i try to close using "X" it not close.min'-' & max'+' are working.pls what is problem? i run in editplus. folowing program i given. import java.awt.*; class Form1 { Frame f1=new Frame("loginpage"); Label l1=new Label("username"); Label l2=new Label("password"); TextField tf1=new TextField(); TextField tf2=new TextField(); Button b1=new Button("submit"); Form1() { f1.setLayout(new FlowLayout()); f1.add(l1); f1.add(tf1); f1.add(l2); f1.add(tf2); f1.add(b1); f1.setSize(437,440); f1.setVisible(true); //f1.dispose(); } public static void main(String[] args) { Form1 f=new Form1(); } }

4 Answers  


Why is model-view-controller architecture used in swing?

0 Answers  


What is java swing components?

0 Answers  


Explain the below Statement if(ae.getSource()==b1)

2 Answers   IPSG Systems, TCS,


Categories