The Superintendent of the Kent County School District needs a developer to build
ID: 3542938 • Letter: T
Question
The Superintendent of the Kent County School District needs a developer to build a Java application to deploy to each school district supervisor. You sit down with the superintendent for an interview and obtain the information shown below.
Customer Interview
A school district is putting together a proposal to build a new sports and recreation arena within the Kent County School District. They need to present a survey to each school district supervisor to determine what the most popular activities might be for the arena. Design a "Survey" window in Java that contains the following items:
The Survey class is basically a GUI with no real functionality, so let's add some.
public class Assign62
{
public static void main(String[] args) {
JFrame frame = new Survey();
frame.setTitle("Survey");
frame.setSize(900, 425); // size may vary
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}//end of main
}
class Survey {
//class field
public Survey()
{
//creat panels and set layouts, add button to groups
//add object to panels, add penels to other panels if required
//set layout for frame add panel(s) to frame
}
public void actionPerformed(ActionEvent e)
{
//create message string, add text in textfield to string
//if object is selected and message to message string
}
}
Explanation / Answer
Hi,
When is due friend ?
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.