Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

can you help me please thanks package week_8.q2_agile_waterfall; import javax.swing.*; /** * See the Lab 8 Questions.md file for the instructions. * Don't forget to

can you help me please thanks

package week_8.q2_agile_waterfall; import javax.swing.*; /** * See the Lab 8 Questions.md file for the instructions. * Don't forget to add screenshots of your program's GUI running. * Save the screenshots in the screenshots directory of this project. * */ public class AgileWaterfallGUI extends JFrame { private JPanel mainPanel; public final static String AGILE = "Agile"; public final static String WATERFALL = "Waterfall"; public final static String EITHER = "either"; public final static String RECOMMENDATION_TEMPLATE = "%s could use %s"; AgileWaterfallGUI() { setTitle("Agile or Waterfall?"); setContentPane(mainPanel); pack(); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); setVisible(true); //TODO any GUI configuration needed //TODO add event handler to read the data entered, and selections made, //TODO recommend a methodology, display in JLabel. // Use the recommendationTemplate to display a String like "Android App should use Agile" }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mobile Communications

Authors: Jochen Schiller

2nd edition

978-0321123817, 321123816, 978-8131724262

More Books

Students also viewed these Programming questions