Starting Out with Java: From Control Structures through Objects (6th Edition)
Starting Out with Java: From Control Structures through Objects (6th Edition)
6th Edition
ISBN: 9780133957051
Author: Tony Gaddis
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 13, Problem 3AW

Explanation of Solution

Lists:

  • A list is a component which is used to display a list of items.
  • It is also used to allow the user to select an item from the list.
  • In Java programming, the list is created by using “JList” component.
  • Once the user create an object of the “JList” class, user needs to pass the array of objects to the constructor.
    • The format for this constructor: “JList (Object[] array)”
  • The “JList” component always uses the array to make the list of items.

Adding a Scroll Bar to a List:

  • Suppose, if a list contains too many elements to be shown at once, user can use a scroll bar to display a list with many number of items.
  • A scroll bar is used to allow the user simply uses the scroll through the list of items.
  • In Java GUI applications, list components do not automatically display a scroll bar.
  • Using the below steps, user is able to display a scroll bar on a list component.
    • Assign the number of visible rows for the list component using “setVisibleRowCount” method.
    • Then add the list component to an object of scroll pane.
      • User can create the object of scroll pane using “JScrollPane” class.
    • Finally add the object of scroll pane to any other container such as panels.

Example:

The example for list component is shown below:

//Store the fruit names in "String" array

String[] fruitNames = {"Apple", "Orange", "Grapes", "Banana"};

//Pass the array of "fruitNames" to "JList" class

JList fruitsList = new JList(fruitsNames);

//Set visible number of rows for fruit lists

fruitsList.setVisibleRowCount(3);

//Create a scroll pane

JScrollPane sampleScroll = new JScrollPane(fruitsList);

//Create a panel

JPanel samplePanel = new JPanel();

//Add the scroll pane to panel

samplePanel.add(sampleScroll);

//Add the panel to the "JFrame" object's contentPane

add(samplePanel);

From the above code,

  • The fruit names are stored in the “String” array. The object of given “String” array is “fruitNames”.
  • The pass the array of “fruitNames” to “JList” constructor...

Blurred answer

Chapter 13 Solutions

Starting Out with Java: From Control Structures through Objects (6th Edition)

Ch. 13.6 - Prob. 13.11CPCh. 13.8 - Prob. 13.12CPCh. 13.8 - Prob. 13.13CPCh. 13.8 - Prob. 13.14CPCh. 13.8 - Prob. 13.15CPCh. 13.8 - Prob. 13.16CPCh. 13.8 - Prob. 13.17CPCh. 13.8 - Prob. 13.18CPCh. 13.8 - 13.19 How do you place a menu bar in a JFame ? Ch. 13.8 - Prob. 13.20CPCh. 13.8 - Prob. 13.21CPCh. 13.8 - Prob. 13.22CPCh. 13.9 - Prob. 13.23CPCh. 13.9 - Prob. 13.24CPCh. 13.9 - Prob. 13.25CPCh. 13.9 - Prob. 13.26CPCh. 13.9 - Prob. 13.27CPCh. 13.9 - Prob. 13.28CPCh. 13.10 - Prob. 13.29CPCh. 13.10 - Prob. 13.30CPCh. 13 - Prob. 1MCCh. 13 - Prob. 2MCCh. 13 - Prob. 3MCCh. 13 - Prob. 4MCCh. 13 - Prob. 5MCCh. 13 - Prob. 6MCCh. 13 - Prob. 7MCCh. 13 - Prob. 8MCCh. 13 - Prob. 9MCCh. 13 - Prob. 10MCCh. 13 - Prob. 11MCCh. 13 - Prob. 12MCCh. 13 - Prob. 13MCCh. 13 - Prob. 14MCCh. 13 - You use this class to create a menu bar. a....Ch. 13 - Prob. 16MCCh. 13 - Prob. 17MCCh. 13 - Prob. 18MCCh. 13 - Prob. 19MCCh. 13 - Prob. 20MCCh. 13 - Prob. 21MCCh. 13 - Prob. 22TFCh. 13 - Prob. 23TFCh. 13 - Prob. 24TFCh. 13 - Prob. 25TFCh. 13 - Prob. 26TFCh. 13 - Prob. 27TFCh. 13 - Prob. 28TFCh. 13 - Prob. 29TFCh. 13 - Prob. 30TFCh. 13 - Prob. 31TFCh. 13 - Prob. 32TFCh. 13 - Prob. 33TFCh. 13 - Prob. 34TFCh. 13 - Prob. 35TFCh. 13 - Prob. 1FTECh. 13 - Prob. 2FTECh. 13 - Prob. 3FTECh. 13 - Prob. 4FTECh. 13 - Prob. 5FTECh. 13 - 6. // Add a menu to the menu bar; JMenuBar menuBar...Ch. 13 - Prob. 7FTECh. 13 - Prob. 1AWCh. 13 - Prob. 2AWCh. 13 - Prob. 3AWCh. 13 - Prob. 4AWCh. 13 - Prob. 5AWCh. 13 - Prob. 6AWCh. 13 - Prob. 7AWCh. 13 - Prob. 8AWCh. 13 - Prob. 9AWCh. 13 - Prob. 10AWCh. 13 - Prob. 11AWCh. 13 - Prob. 12AWCh. 13 - Prob. 1SACh. 13 - Prob. 2SACh. 13 - Prob. 3SACh. 13 - Prob. 4SACh. 13 - Prob. 5SACh. 13 - Prob. 6SACh. 13 - Prob. 7SACh. 13 - Prob. 8SACh. 13 - Prob. 9SACh. 13 - Prob. 10SACh. 13 - Prob. 11SACh. 13 - Prob. 12SACh. 13 - 1. Scrollable Tax Calculator Create an application...Ch. 13 - Skateboard Designer The Skate Shop sells the...Ch. 13 - 2. Image Viewer Write an application that allows...Ch. 13 - Prob. 3PC
Knowledge Booster
Background pattern image
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education