Starting Out with Java: Early Objects (6th Edition)
6th Edition
ISBN: 9780134462011
Author: Tony Gaddis
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
Chapter 12, Problem 8SA
Program Plan Intro
Selection modes:
- There are two selection modes can be used to operate the “ListView” control.
- Single selection mode:
- Using this mode, user can select only one item from a list at a time.
- Multiple interval selection mode:
- Using this mode, user can select multiple items from a list.
- Multiple interval selection can be made in two ways and they are
- Consecutive selection:
- To select the items that are present in the consecutive order, click the item that is to be selected first and press “Shift” key to select the remaining items that are to be selected.
- Nonconsecutive selection:
- To select the items that are present in the nonconsecutive order, click the item that is to be selected first and press “Ctrl” key to select the required items that are to be selected.
- Consecutive selection:
- Single selection mode:
- User can modify the selection mode using the control’s “getSelectionModel().setSelectionMode()” method.
- This method accepts any one of the enum constants such as “SelectionMode.MULTIPLE” and “SelectionMode.SINGLE”.
Example:
The example for changing the selection mode is shown below:
exampleListView.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);
Here,
- The “exampleListView” is a name of a “ListView” control.
- The code allows to select only single item from a “exampleListView”.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Ch: Color and Grayscale Levels
3. A user can set color-table entries in a PHIGS application program with the function a) setColourRepresentation (ws, ci, colorptr) b) setColorRepresentation (ws, ci, colorptr) c) setColour (ws, ci, colorptr) d) setColourRepresentation ()
Android Studio with Java
During runtime, the attribute of a control, like the attribute of other controls, has an effect on whether or not the control is shown on the page.
Chapter 12 Solutions
Starting Out with Java: Early Objects (6th Edition)
Ch. 12.1 - What is the type selector name that corresponds to...Ch. 12.1 - Prob. 12.2CPCh. 12.1 - Prob. 12.3CPCh. 12.1 - Prob. 12.4CPCh. 12.1 - Prob. 12.5CPCh. 12.1 - Prob. 12.6CPCh. 12.1 - Prob. 12.7CPCh. 12.1 - Prob. 12.8CPCh. 12.1 - Prob. 12.9CPCh. 12.1 - Prob. 12.10CP
Ch. 12.1 - Prob. 12.11CPCh. 12.2 - Prob. 12.12CPCh. 12.2 - Prob. 12.13CPCh. 12.2 - Prob. 12.14CPCh. 12.2 - Prob. 12.15CPCh. 12.3 - How do you determine in code whether a CheckBox is...Ch. 12.3 - In code, how do you make a CheckBox appear...Ch. 12.3 - What type of event do CheckBox controls generate...Ch. 12.4 - How do you set the size of a ListView?Ch. 12.4 - Prob. 12.20CPCh. 12.4 - Prob. 12.21CPCh. 12.4 - Prob. 12.22CPCh. 12.4 - How do you set the orientation of a ListView...Ch. 12.5 - Prob. 12.24CPCh. 12.5 - Prob. 12.25CPCh. 12.5 - Prob. 12.26CPCh. 12.5 - Prob. 12.27CPCh. 12.6 - Prob. 12.28CPCh. 12.6 - Prob. 12.29CPCh. 12.6 - Prob. 12.30CPCh. 12.7 - What is the difference between a TextArea and a...Ch. 12.7 - Prob. 12.32CPCh. 12.7 - Prob. 12.33CPCh. 12.7 - Prob. 12.34CPCh. 12.7 - Prob. 12.35CPCh. 12.8 - Briefly describe each of the following menu system...Ch. 12.8 - What class do you use to create a menu bar?Ch. 12.8 - What class do you use to create a menu?Ch. 12.8 - What class do you use to create a menu item?Ch. 12.8 - What class do you use to create a radio menu item?...Ch. 12.8 - How do you create a relationship between radio...Ch. 12.8 - What class do you use to create a check menu item?...Ch. 12.8 - What type of event do menu items generate when...Ch. 12.9 - In what package is the FileChooser class?Ch. 12.9 - Prob. 12.45CPCh. 12.9 - Prob. 12.46CPCh. 12.9 - How do you determine the file that the user...Ch. 12 - When a selector name starts with a period in a...Ch. 12 - Prob. 2MCCh. 12 - Prob. 3MCCh. 12 - Prob. 4MCCh. 12 - Prob. 5MCCh. 12 - In the hexadecimal color value #05AAFF, the AA...Ch. 12 - Prob. 7MCCh. 12 - Prob. 8MCCh. 12 - Prob. 9MCCh. 12 - Prob. 10MCCh. 12 - The __________control presents its items in a...Ch. 12 - Prob. 12MCCh. 12 - A __________ is like a TextField that can accept...Ch. 12 - You use this class to create a menu bar. a....Ch. 12 - Prob. 15MCCh. 12 - True or False: If you make any changes to an...Ch. 12 - Prob. 17TFCh. 12 - Prob. 18TFCh. 12 - Prob. 19TFCh. 12 - Prob. 20TFCh. 12 - Prob. 21TFCh. 12 - Prob. 22TFCh. 12 - True or False: A MenuBar object acts as a...Ch. 12 - True or False: A Menu object cannot contain other...Ch. 12 - Prob. 1FTECh. 12 - .label { -font-size: 14pt; }Ch. 12 - Prob. 3FTECh. 12 - Prob. 4FTECh. 12 - Prob. 1AWCh. 12 - Suppose we have a stylesheet named styles.css, and...Ch. 12 - Prob. 3AWCh. 12 - Prob. 4AWCh. 12 - Prob. 5AWCh. 12 - Prob. 6AWCh. 12 - Prob. 7AWCh. 12 - Prob. 8AWCh. 12 - Prob. 9AWCh. 12 - Assume a JavaFX application has a RadioButton...Ch. 12 - Prob. 11AWCh. 12 - Prob. 12AWCh. 12 - Prob. 13AWCh. 12 - Write the code that creates a menu bar with one...Ch. 12 - Prob. 1SACh. 12 - Prob. 2SACh. 12 - Prob. 3SACh. 12 - Prob. 4SACh. 12 - Prob. 5SACh. 12 - Prob. 6SACh. 12 - Prob. 7SACh. 12 - Prob. 8SACh. 12 - Prob. 9SACh. 12 - Dorm and Meal Plan Calculator A university has the...Ch. 12 - Skateboard Designer The Skate Shop sells the...Ch. 12 - Prob. 3PCCh. 12 - Smartphone Packages Cell Solutions, a cell phone...Ch. 12 - Shopping Cart System Create an application that...
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- * aut cad Realtime and point consider are sub-commands for the main command pan. True False * aut cad Zoom command is one of the drawing menu commands used to control the size of the view, zoom in and out in the AutoCAD program. False Truearrow_forwardWhen you drag a field object to an existing control in the interface, Visual Basic replaces the existing control with a new control.a. True b. Falsearrow_forwardIn Visual Basics Create a menu called Calculator menu with the Add, Subtract and Clear command.arrow_forward
- When the page loads, the main menu appears, where the following parameters must be set to start the game: Name (player's name) Map difficulty (Easy, Hard) Only after this can the game be started. From the menu you should also be able to open the game description. A leaderboard can also appear, showing who completed the map the fastest. Note! The game will have multiple "pages": the menu, the game, and possibly the description. However, these should not be in separate HTML files but should be handled within a single HTML file. You can achieve this with divs that are shown/hidden using JavaScript. The game description can also appear in a pop-up window.arrow_forwardPlease create a random quote generator Java GUI. It should include: 1. A button to perform randomizing function 2. A text area to display the quote.arrow_forwardAt runtime, the value of an attribute of a control, which is comparable to the value of other controls' attributes, determines whether or not the control will appear on the form. Other controls' attributes play a similar role.arrow_forward
- Lab Tasks: You are going to develop a simple application which has two screens: • Screen1 contain four controls: TextView show "Enter your email address and password", Edittext1 to get email address and Edittext2 to get password from the user and Button to take user to next screen Screen2 contains only one control – TextView which displays greet messagearrow_forwardWhat happens if the size of the images stored in the ImageList control's data area differs from the value of its ImageSize property?arrow_forwardThat answer is wrong. Can you please read the instructions.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Programming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage Learning
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:9781337102124
Author:Diane Zak
Publisher:Cengage Learning
Time Complexity Analysis - How To Calculate Running Time | InterviewBit; Author: InterviewBit;https://www.youtube.com/watch?v=--oxG4Q1PA0;License: Standard YouTube License, CC-BY