Top Banner
Advanced Java Programming Lecture 1: Introduction to GUI Programming By Ravi Kant Sahu Asst. Professor Lovely Professional University, Punjab Lovely Professional University, Punjab
61
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Swing api

Advanced Java Programming

Lecture 1: Introduction to GUI Programming

ByRavi Kant SahuAsst. Professor

Lovely Professional University, PunjabLovely Professional University, Punjab

Page 2: Swing api

Introduction

• AWT is fine for developing simple graphical user interfaces, but not for developing comprehensive GUI projects.

• Swing components depend less on the target platform and use less of the native GUI resource.

• Swing GUI component classes are named with a prefixed J.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 3: Swing api

Why AWT and Swing?

• Although Swing eliminates a number of the limitations inherent in the AWT, Swing does not replace it.

• Instead, Swing is built on the foundation of the AWT. This is why the AWT is still a crucial part of Java.

• Swing also uses the same event handling mechanism as the AWT.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 4: Swing api

Java Foundation Classes• JFC encompass a group of features for building graphical user

interfaces (GUIs) and adding rich graphics functionality and interactivity to Java applications.

Swing GUI ComponentsPluggable Look-and-Feel Support Java 2D API Internationalization

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 5: Swing api

Key Features of Swing• Swing Components Are Lightweight

Means that they are written entirely in Java and do not map directly to platform-specific peers.

• Java 2D APIEnables developers to easily incorporate high-quality 2D graphics, text,

and images in applications and applets.

• InternationalizationAllows developers to build applications that can interact with users

worldwide in their own languages and cultural conventions.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 6: Swing api

Key Features of Swing• Swing Supports a Pluggable Look and Feel

The look and feel of Swing applications is pluggable, allowing a choice of look and feel.

• For example, the same program can use either the Java or the Windows look and feel.

• Additionally, the Java platform supports the GTK+ look and feel, which makes hundreds of existing look and feels available to Swing programs.

• The Synth package allows you to create your own look and feel.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 7: Swing api

AWT Vs Swing AWT SWING

Components are heavy-weight. Light-weight components.

Native look and feel Pluggable look and feel

Does not have MVC Supports MVC

Not available in AWT. Swing has many advanced features like JTabel, Jtabbedpane.

Components are platform dependent. Components are platform independent.

AWT components require java.awt package.

Swing components require javax.swingpackage.

Slower Faster than AWT

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 8: Swing api

Swing API• GUI API contains classes that can be classified into three

groups: component classes, container classes, and helper classes.

• The component classes, such as JButton, JLabel, and JTextField, are for creating the user interface.

• The container classes, such as JFrame, JPanel, and JApplet, are used to contain other components.

• The helper classes, such as Graphics, Color, Font, FontMetrics, and Dimension, are used to support GUI components.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 9: Swing api

Class hierarchy for AWT and Swing

Page 10: Swing api

MVC Connection• A visual component is a composite of three distinct aspects:

1) The state information associated with the component2) The way that the component looks when rendered on the screen3) The way that the component reacts to the user

• Model-View-Controller architecture is successful because each piece of the design corresponds to an aspect of a component.

• By separating a component into a model, a view, and a controller, the specific implementation of each can be changed without affecting the other two.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 11: Swing api

MVC• In MVC terminology, the model corresponds to the state information

associated with the component. • For example, in the case of a check box, the model contains a field

that indicates if the box is checked or unchecked.

• The view determines how the component is displayed on the screen, including any aspects of the view that are affected by the current state of the model.

• The controller determines how the component reacts to the user. For example, when the user clicks a check box, the controller reacts by changing the model to reflect the user’s choice (checked or unchecked).

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 12: Swing api

Swing MVC Architecture

• Swing uses a modified version of MVC that combines the view andthe controller into a single logical entity called the UI delegate.

• For this reason, Swing’s approach is called either the Model Delegate architecture or the Separable Model architecture.

• Therefore, although Swing’s component architecture is based on MVC, it does not use a classical implementation of it.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 13: Swing api

Swing MVC• Swing’s pluggable look and feel is made possible by its Model-Delegate

architecture.

• Because the view (look) and controller (feel) are separate from the model, the look and feel can be changed without affecting how the component is used within a program.

• To support the Model-Delegate architecture, most Swing components contain two objects.

• The first represents the model and second represents the UI delegate.

• Models are defined by interfaces. For example, the model for a button is defined by the ButtonModel interface.

• UI delegates are classes that inherit ComponentUI. For example, the UI delegate for a button is ButtonUI.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 14: Swing api

Event Dispatching Thread• Swing programs are event-driven. An event is passed to the

application by calling an event handler defined by the application.

• Swing event handling code runs on a special thread known as the event dispatch thread.

• Thus, although event handlers are defined by our program, they are called on a thread that was not created by the program.

• So all Swing GUI components must be created and updated from the event dispatching thread, not the main thread of the application.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 15: Swing api

Why EDT?• Because most Swing object methods are not "thread safe":

invoking them from multiple threads risks thread interference ormemory consistency errors.

• Some Swing component methods are labeled "thread safe" in the API specification; these can be safely invoked from any thread.

• All other Swing component methods must be invoked from the event dispatch thread.

• Programs that ignore this rule may function correctly most of the time, but are subject to unpredictable errors that are difficult to reproduce.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 16: Swing api

Event Dispatching Thread

• To enable the GUI code to be created on the event dispatching thread, we must use one of two methods that are defined by the SwingUtilities class.

• These methods are invokeLater( ) and invokeAndWait( ).

static void invokeLater (Runnable obj)

static void invokeAndWait(Runnable obj) throws InterruptedException, InvocationTargetException

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 17: Swing api

invokeLater() Vs invokeAndWait()

• invokeLater is used to perform task asynchronously in AWTEvent dispatcher thread while InvokeAndWait is used to perform task synchronously.

• invokeLater is non blocking call while InvokeAndWait will block until task is completed.

• invokeLater is more flexible in terms of user interaction because it just adds the task in Event-Queue and allow user to interact with system while invokeAndWait is preffered way to update the GUI from application thread (waits for event to be completed).

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 18: Swing api

Swing Containers• Swing defines two types of containers. • The first are top-level containers: JFrame, JApplet, JWindow, and

JDialog.

• These containers do not inherit JComponent. • They do, however, inherit the AWT classes Component and

Container. • Unlike Swing’s other components, which are lightweight, the top-

level containers are heavyweight. • This makes the top-level containers a special case in the Swing

component library.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 19: Swing api

Swing Containers• The second type of containers supported by Swing are

lightweight containers.

• Lightweight containers (e.g. JPanel, JScrollPane) do inherit JComponent.

• Lightweight containers are used to organize and manage groups of related components because a lightweight container can be contained within another container.

• Thus, we can use lightweight containers to create subgroups of related controls that are contained within an outer container.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 20: Swing api

JPanel• JPanel is a generic lightweight container.

Constructors:

• JPanel()Creates a new JPanel with a double buffer and a flow layout.

• JPanel(LayoutManager layout) Create a new buffered JPanel with the specified layout

manager.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 21: Swing api

JPanel…Methods:

• PanelUI getUI ()Returns the look and feel (L&F) object.

• void setUI (PanelUI pi)Sets the look and feel (L&F) object

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 22: Swing api

JScrollPane• JScrollPaneis a lightweight container that automatically handles the

scrolling of another component.

• The component being scrolled can either be an individual component, such as a table, or a group of components contained within another lightweight container, such as a JPanel.

• The viewable area of a scroll pane is called theviewport. It is a window in which the component being scrolled is displayed.

JScrollPane(Component comp)

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 23: Swing api

Steps to create JScrollPane

• Create the component to be scrolled.• Create an instance of JScrollPane, passing to it the object to scroll.• Add the scroll pane to the content pane.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 24: Swing api

JTabbedPane• It manages a set of components by linking them with tabs.

• The user chooses which component to view by selecting the tab corresponding to the desired component.

• Selecting a tab causes the component associated with that tab to come to the forefront.

• If you want similar functionality without the tab interface, you can use a card layout instead of a tabbed pane.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 25: Swing api

Constructor:JTabbedPane()

Adding Tabs:add() is used to add tabs to the TabbedPane.

void addTab(String name, Component comp)void addTab(String name, Icon I, Component comp)

Page 26: Swing api

Top-Level Container Panes• Each top-level container defines a set of panes. • At the top of the hierarchy is an instance of JRootPane.

• JRootPane is a lightweight container whose purpose is to manage the other panes. It also helps manage the optional menu bar.

• The panes that comprise the root pane are called the glass pane, the content pane, and the layered pane.

• The glass pane is the top-level pane. It sits above and completely covers all other panes. By default, it is a transparent instance of JPanel.

• The layered pane is an instance of JLayeredPane. The layered pane allows components to be given a depth value. The layered pane holds the content pane and the (optional) menu bar.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 27: Swing api

Color class• We can set colors for GUI components by using the java.awt.Color

class.

• We can use one of the 13 standard colors (BLACK, BLUE, CYAN, DARK_GRAY, GRAY, GREEN, LIGHT_GRAY, MAGENTA, ORANGE, PINK, RED, WHITE, and YELLOW) defined as constants in java.awt.Color.

• Colors are made of red, green, and blue components, each represented by an int value that describes its intensity, ranging from 0(darkest shade) to 255(lightest shade). This is known as the RGB model.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 28: Swing api

• We can create a color using the following constructor: public Color(int r, int g, int b);

• Color color = new Color(128,100,100);

• The arguments r, g, b are between 0 and 255. If a value beyond this range is passed to the argument, an IllegalArgumentException will occur.

Example: JButton jb1 = new JButton("OK");jb1.setBackground(color);jb1.setForeground (new Color(100,1,1));

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 29: Swing api

Font class• We can create a font using the java.awt.Font class and set fonts for the

components using the setFont method in the Component class.

• The constructor for Font is:public Font (String name, int style, int size);

• You can choose a font name from SansSerif, Serif, Monospaced, Dialog, or DialogInput.

• Choose a style from Font.PLAIN(0), Font.BOLD(1), Font.ITALIC(2), and Font.BOLD+Font.ITALIC(3), and specify a font size of any positive integer.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 30: Swing api

• Example:Font font1 = new Font("SansSerif", Font.BOLD, 16);Font font2 = new Font("Serif", Font.BOLD + Font.ITALIC, 12);JButton jbtOK = new JButton("OK");jbtOK.setFont(font1);

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 31: Swing api

Setting Default operations in a JFrame

• setDefaultCloseOperation() is used for setting the default operation for close button of a JFrame.

void setDefaultCloseOperation (int what)

• These constants are declared in WindowConstants, which is an interface declared in javax.swingthat is implemented by JFrame.

• JFrame.HIDE_ON_CLOSE• JFrame.DO_NOTHING_ON_CLOSE• JFrame.EXIT_ON_CLOSE

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 32: Swing api

Layout Manager classesLayoutManager class Description

BorderLayout The border layout manager. Border layouts use five components: North, South, East, West, and Center

CardLayout The card layout manager. Card layouts emulate index cards. Only the one on top is showing.

GridLayout The grid layout manager. Grid layout displays components in a two-dimensional grid.

FlowLayout The flow layout manager. Flow layout positions components left to right, top to bottom.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 33: Swing api

FlowLayout• Arranges the components in left to right, top to bottom fashion.

public FlowLayout ()public FlowLayout (int alignment)public FlowLayout (int alignment, int H_Gap, int V_Gap)

• Alignments are specified as:FlowLayout.LEFTFlowLayout.RIGHTFlowLayout.CENTER

• By default 5 pixels is used as horizontal and vertical gap between components.

FlowLayout fl = new FlowLayout (FlowLayout.CENTER, 30, 20);frm.setLayout(fl);

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 34: Swing api

GridLayout• It divides a container into a grid of specified rows and columns.

Each to display one component.

• Size of component is changed according to the size of the cell.

public GridLayout (int row, int column)public GridLayout (int row, int column, int H_Gap, int V_Gap)

GridLayout gl = new GridLayout (3, 4); frm.setLayout (gl);

GridLayout gl1 = new GridLayout (3, 4, 20, 30); frm.setLayout (gl2);

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 35: Swing api

BorderLayout• It divides the container into 5 regions ( NORTH, SOUTH, EAST,

WEST and CENTER).

• It is the default layout manager for Window.public BorderLayout()

• To add a component at a specific region, following method is used: public void add ( Component c, int Region)

Example:Button btn = new Button(“OK”);frm.add( btn, BorderLayout.EAST);

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 36: Swing api

CardLayout• It is used to arrange containers in the form of deck of cards.

Methods:first() / last()/ next()/ previous(): is used to make the first/ last/ next/ previous card visible.

show(): is used to make a specified card visible.public void show ( Container deck, String CardName)

• To give a name to the container while it is added to the deck:public void add ( Container card, String CardName)

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 37: Swing api

Swing ComponentS

Page 38: Swing api

Swing Components• Swing components are derived from the JComponent class.

• JComponent provides the functionality that is common to all components.

• For example, JComponent supports the pluggable look and feel.

• JComponent inherits the AWT classes Container and Component.

• Thus, a Swing component is built on and compatible with an AWTcomponent.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 39: Swing api

Components

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 40: Swing api

JLabel• JLabel is used to display text and/or an icon. It is a passive

component in that it does not respond to user input.JLabel(Icon icon)JLabel(String str)JLabel(String str, Icon icon, int align)

• The align argument specifies the horizontal alignment of the text and/or icon within the dimensions of the label.

• It must be one of the following values: LEFT, RIGHT, CENTER, LEADING, or TRAILING.

• These constants are defined in the SwingConstants interface.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 41: Swing api

• The icon and text associated with the label can be obtained by the following methods:

Icon getIcon( )String getText( )

• The icon and text associated with a label can be set by these methods:

void setIcon(Icon icon)void setText(String str)

Page 42: Swing api

JTextField• JTextField allows us to edit one line of text.

JTextField(int cols)JTextField(String str, int cols)JTextField(String str)

• The integer argument passed to the JTextField constructor, indicates the number of columns in the field (Minimum number of characters displayed in the TextField ‘M’ or ‘W’).

• This number is used along with metrics provided by the field's current font to calculate the field's preferred width.

• It does not limit the number of characters the user can enter.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 43: Swing api

JTextArea• A JTextArea is a multi-line area that displays plain text.

JTextArea ()JTextArea (String str)JTextArea (int rows, int cols)JTextField (String str, int rows, int cols)

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 44: Swing api

JPasswordField• The JPasswordField class, a subclass of JTextField, provides

specialized text fields for password entry.

JPasswordField pf = new JPasswordField(10);

• For security reasons, a password field does not show the characters that the user types.

• Instead, the field displays a character different from the one typed, such as an asterisk ‘*’.

• As another security precaution, a password field stores its value as an array of characters, rather than as a string.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 45: Swing api

JPasswordField…Reading the Password:

char[] input = passwordField.getPassword();

Setting and Getting Echo-char:void setEchoChar(char)char getEchoChar()

• void selectAll() method is used to all characters in the password field.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 46: Swing api

Swing Buttons• Swing defines four types of buttons, all are subclasses of the

AbstractButton class, which extends JComponent.JButton, JToggleButton, JCheckBox, and JRadioButton

• AbstractButton contains many methods:String getText( )void setText(String str)void setDisabledIcon(Icon di)void setPressedIcon(Icon pi)void setSelectedIcon(Icon si)void setRolloverIcon(Icon ri)

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 47: Swing api

JButton• JButton class provides the functionality of a push button.• JButton allows an icon, a string, or both to be associated with the

push button.JButton(Icon i)JButton(String str)JButton(String str, Icon i)

• When the button is pressed, an ActionEvent is generated. • We can set the action command by calling setActionCommand( ) on

the button. • We can obtain the action command by calling getActionCommand( )

on the event object.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 48: Swing api

JToggleButton• A toggle button looks just like a push button, but it acts differently

because it has two states: pushed and released.

• Toggle buttons are objects of the JToggleButton class.

• JToggleButton is a super-class for two other Swing components that also represent two-state controls.

• These are: JCheckBox and JRadioButton

JToggleButton(String str)

• By default, the button is in the off position.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 49: Swing api

JCheckBox• JCheckBox class provides the functionality of a check box.

• Its immediate super class is JToggleButton, which provides support for two-state buttons.

JCheckBox(String str)

• When the user selects or deselects a check box, an ItemEvent is generated.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 50: Swing api

JRadioButton• Radio buttons are a group of mutually exclusive buttons, in which

only one button can be selected at any one time.

• They are supported by the JRadioButton class, which extends JToggleButton.

• A button group is created by the ButtonGroup class. • Its default constructor is invoked for this purpose. • Elements are added to the button group by using add().

void add(AbstractButton ab)• JRadioButton generates action events, item events, and change events

each time the button selection changes.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 51: Swing api

Image Icons• An icon is a fixed-size picture; typically it is small and used to

decorate components. • Java supports three image formats: GIF, JPEG, and PNG. • The image file names for these types end with .gif, .jpg, and .png,

respectively.

• To display an image icon, first create an ImageIcon object using new javax.swing.ImageIcon(filename).

ImageIcon icon = new ImageIcon (“ravi.jpg");

• An image icon can be displayed in a label or a button using new JLabel(image-Icon) or new JButton(imageIcon).

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 52: Swing api

JTable• JTable is a component that displays rows and columns of data.

• We can drag the cursor on column boundaries to resize columns.

• We can also drag a column to a new position.

• Depending on its configuration, it is also possible to select a row, column, or cell within the table, and to change the data within a cell.

• JTable does not provide any scrolling capabilities of its own. Instead, we normally wrap a JTable inside a JScrollPane.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 53: Swing api

JTable(Object data[ ][ ], Object colHeads[ ])

• data is a two-dimensional array of the information to be presented, and colHeads is a one-dimensional array with the column headings.

• ListSelectionEvent is generated when the user selects something in the table.

• By default, JTable allows us to select one or more complete rows, but we can change this behavior to allow one or more columns, or one or more individual cells to be selected.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 54: Swing api

Steps to create a JTable1. Create an instance of JTable.2. Create a JScrollPane object, specifying the table as the object to scroll.3. Add the table to the scroll pane.4. Add the scroll pane to the content pane.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 55: Swing api

JList• It supports the selection of one or more items from a list.

JList(Object [ ] items)

• JListis based on two models.

• The first is ListModel. This interface defines how access to the list data is achieved.

• The second model is the ListSelectionModel interface, which defines methods that determine what list item or items are selected.

• A JList generates a ListSelectionEvent when the user makes or changes a selection.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 56: Swing api

• JList allows the user to select multiple ranges of items within the list, but we can change this behavior by calling setSelectionMode( ), which is defined by JList.

void setSelectionMode(int mode)

• Here, mode specifies the selection mode. It must be one of these values defined by– SINGLE_SELECTION– SINGLE_INTERVAL_SELECTION– MULTIPLE_INTERVAL_SELECTION

• The default, multiple-interval selection, lets the user select multiple ranges of items within a list.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 57: Swing api

JComboBox• Combo box is a combination of a text field and a drop-down list.

• A combo box normally displays one entry, but it will also display a drop-down list that allows a user to select a different entry.

JComboBox(Object[ ]items)

• Items can be dynamically added to the list of choices via the addItem( ) method.

void addItem(Object obj)

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 58: Swing api

JMenu• A menu provides a space-saving way to let the user choose one of

several options.

• A menu usually appears either in a menu bar or as a popup menu.

• A menu bar contains one or more menus and has a customary, platform-dependent location, usually along the top of a window.

• A popup menu is a menu that is invisible until the user makes a platform-specific mouse action, such as pressing the right mouse button, over a popup-enabled component.

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 59: Swing api

Creating JMenu• Create a MenuBar

JMenuBar menuBar = new JMenuBar();• Create Menus

JMenu menu = new JMenu("File");• Create MenuItems

JMenuItem mi = new JMenuItem(“Open");• Add MenuItems to Menu.

menu.add(mi);• Add Menus to MenuBar

menuBar.add(menu);• Set the MenuBar to the Container

setJMenuBar(menuBar);

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)

Page 60: Swing api

Questions

Page 61: Swing api

Ravi Kant Sahu, Asst. Professor @ Lovely Professional University, Punjab (India)