Product Application

User Generated

gehzlfgrel

Computer Science

Description

Acting in the role of developer, and using the code provided as your starting point, make the changes based on the new information provided by the product owner. Product owner wants destinations that focus on detox/wellness vacations. Attached is the code and it has to be run in Java Eclipse software. Update the code with directions on the rubric attached. Upload as executable JAR file. If that can't be done, upload code, formatted properly, as java file or text file.

Unformatted Attachment Preview

CS 250 Product Application Guidelines and Rubric Acting in the role of developer and using the code provided as your starting point, make the changes based on the new information provided by the product owner. I. Import the code and customize the slideshow control. A. Download the zip file of code for the updated slideshow control you played with in Module Four and import it into Eclipse. B. Update the slideshow control with pictures and text for the new requirements specified by the product owner this week. C. Provide specific comments that explain the purpose of lines or sections of your code and detail the approach and method the programmer took to achieve a specific task in the code. Rubric Guidelines for Submission: Export your Java Eclipse project to an executable JAR file to be submitted to the instructor. This will include the source code and the image files so the full ListView control can run. For additional instructions on how to create an executable JAR file, watch the following video: Exporting Your Eclipse Java Project to an Executable JAR File. Critical Element Software Function Revised Code Code Comments Proficient (100%) Provides functioning software and image files that contain all the required updates and customization Revises all appropriate code sections Needs Improvement (85%) Provides functioning software but does not contain all required updates and customization Not Evident (0%) Does not provide functioning software with any updates or customizations Value 40 Revises most of the appropriate code sections 30 Provides concise comments that clearly explain the purpose and function of the changes Provides comments that explain the purpose and function of changes but they are not concise or are not clear Does not revise any of the required code sections Does not provide comments that explain the purpose and/or function of changes Total 30 100% import import import import import import import import import import import import java.awt.BorderLayout; java.awt.CardLayout; java.awt.EventQueue; java.awt.FlowLayout; java.awt.HeadlessException; java.awt.event.ActionEvent; java.awt.event.ActionListener; javax.swing.JButton; javax.swing.JFrame; javax.swing.JLabel; javax.swing.JPanel; java.awt.Color; public class SlideShow extends JFrame { //Declare Variables private JPanel slidePane; private JPanel textPane; private JPanel buttonPane; private CardLayout card; private CardLayout cardText; private JButton btnPrev; private JButton btnNext; private JLabel lblSlide; private JLabel lblTextArea; /** * Create the application. */ public SlideShow() throws HeadlessException { initComponent(); } /** * Initialize the contents of the frame. */ private void initComponent() { //Initialize variables to empty objects card = new CardLayout(); cardText = new CardLayout(); slidePane = new JPanel(); textPane = new JPanel(); textPane.setBackground(Color.BLUE); textPane.setBounds(5, 470, 790, 50); textPane.setVisible(true); buttonPane = new JPanel(); btnPrev = new JButton(); btnNext = new JButton(); lblSlide = new JLabel(); lblTextArea = new JLabel(); //Setup frame attributes setSize(800, 600); setLocationRelativeTo(null); setTitle("Top 5 Destinations SlideShow"); getContentPane().setLayout(new BorderLayout(10, 50)); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //Setting the layouts for the panels slidePane.setLayout(card); textPane.setLayout(cardText); //logic to add each of the slides and text for (int i = 1; i
Purchase answer to see full attachment
User generated content is uploaded by users for the purposes of learning and should be used following Studypool's honor code & terms of service.

Explanation & Answer

Attached are my answer in MS Word and the java and text file(s).

A) We have downloaded the zip file of the code:

B) The slideshow control can be updated with pictures and text for the new requirements
specified by the product owner as follow:

C) The modified code with comments is shown below:
// All of the following packages were imported into Java when running in Ellipse
java.awt.BorderLayout;
java.awt.CardLayout;
java.awt.EventQueue;
java.awt.Flow...


Anonymous
Excellent resource! Really helped me get the gist of things.

Studypool
4.7
Trustpilot
4.5
Sitejabber
4.4

Related Tags