answersLogoWhite

0

What is jfc?

User Avatar

Shariefmpl

Lvl 1
10y ago
Updated: 12/9/2022

The Java Foundation Classes (JFC) are a comprehensive set of GUI components and services which dramatically simplify the development and deployment of commercial-quality desktop and internet/Intranet applications.

User Avatar

Wiki User

10y ago

What else can I help you with?

Continue Learning about Engineering

What are the advantages of JFC?

JFC stands for Java Foundation Classes. They are a set of GUI components and services which simplify the development and deployment of commercial-quality desktop and internet/intranet applications.


What do you mean by JFC in java?

The Java Foundation Classes (JFC) are a comprehensive set of GUI components and services which dramatically simplify the development and deployment of commercial-quality desktop and Internet/Intranet applications. Sundeep


What is swing and swing event?

Swing is the api defined in javax.swing package and used to add graphical interface to the user by providing controls like JButton , JLabel , JTextField etc. if there is a User Interface then there has to be a way to handle the events generated by these controls so event is the general interaction of the user and the application which can be delegated using any delegation model..simple examples of the events are MouseEvent (click, double click etc.) swing is also known as JFC (java foundation classes) before using swing for designing user interface we were using awt which are heavy objects as compared to swing objects and swing has a better look and feel also.


What is the difference local applet and remote applet?

A LOCAL applet is the one which is stored on our computer system.when browser try to access the applet, it is not necessary for our computer to be connected to The Internet. A REMOTE applet is the one which is not stored on our computer system and we are required to be connected to the Internet. PARITOSH Khanna Happy Programing


What is difference between java applet and java Swing?

An applet is a Java program embedded in an HTTP document. When the HTTP document is loaded into a web browser, the Java program executes on the web. A widget = window gadget, a GUI (graphical user interface) control. A GUI control, such as a command button, is accessed by the user via a mouse click or by the keyboard. GUI programs can run on one's PC.