Java Final Project 0 Answer(s) 2 years and 9 months ago
Posted in : Java Beginners
I am having a real hard time with this java assignment. Any help or tips will be great!!!
This is the requirements:
Final Project Overview
This document provide a sample of what is possible, and could lead to a project worth the maximum grade of 100% Something to think about!!! Do not think this is what you have to do to get the maximum number of points. It is just a sample! You are only bound by your programming ability. Please do not try and do more than you are capable of. Think, plan, design and code YOUR final project. This is your opportunity to show off your skills!
Overall Appearance
Tabs should be used in this application. At a minimum, 4 fully functioning tabs should be designed ? the Pools tab, the Hot Tubs tab, the customer tab and the Contractors tab.
General Tab
The first tab simply displays the current date. An Exit button is provided in this tab, as well as all others. (For all buttons throughout the application, mnemonic values are set.)
Customers Tab
The Customers tab allows the user to add new customers and checks for the existence of the customer.txt file in the directory where the program is located. If the file does not exist, the program tells the customer in the Message Area at the bottom. The Customer Display will give a brief explanation of the user?s options.
Add Customer
When the user clicks Add Customer, an entry window should appear. If the customer.txt file does not exist, the program tells the customer in the Message Area at the bottom.
In this window, the user can enter customers; the information entered will be stored as entered.
Clicking Add Customer will attempt to write the information to customer.txt. The user should receive an indication when a customer is added successfully.
After a customer has been added and the Customers window is closed, the user can click Refresh to refresh the Customer Display area, which will display the contents of the customer.txt file.
Contractor Tab
The Contractor tab functions in exactly the same way as the Customers tab. The filename for contractors is contract.txt.
Pools Tab
The Pools tab should perform a calculation.
After a length, width, and depth have been entered, the user can click Calculate Volume and the program will display the calculated volume (length * width * depth in cubic feet).
Exception handling is used here to catch exceptions, including incomplete forms, invalid entries, and combinations of these.
Incomplete forms:
Invalid input:
Combination invalid input/incomplete input:
Hot Tubs Tab
The Hot Tubs tab allows for round and oval tubs? volumes to be calculated.
Round Tub
When Round Tub is selected, the user cannot fill out the width field since we?re dealing with a circle. After filling out the length and depth fields, the Calculate Volume button will display the volume (Pi * ((length/2)^2) * depth). The width is automatically set to the same value as the length, and the user is informed.
Again, exception handling is used here.
Oval Tub
When Oval Tub is selected, the width field is opened up:
The formula used to calculate the volume is (Pi * (length * width)^2) * depth.
As with the Pools tab, the same error messages should be displayed in case of no input/invalid values.
Temp Calc Tab
The Temp Calc tab offers a temperature converter (Celsius <-> Fahrenheit).
The user enters a temperature, and selects either C or F. The field after the Result display will display the opposite (if C is selected, field will display F; if F is selected, field will display C).
No input:
Customer Comment section. The customer should be able to type a comment in and submit it.
This is what I have so far:
import java.awt.*;
import javax.swing.*;
public class FinalProject extends JFrame { private JLabel textPrompt; private JTextArea inputText; private JLabel keyPrompt; private JTextField inputKey; Container container;
public FinalProject() { super( "Final Project " );
JTabbedPane tab = new JTabbedPane(); // constructing the first panel
JLabel l1 = new JLabel( "Pool" ); JPanel p1 = new JPanel(); tab.addTab( "Pool", null, p1, " Pool" );
// constructing the second panel JLabel l2 = new JLabel("Hot Tube"); JPanel p2 = new JPanel();
//Pi * (length * width)^2) * depth
tab.addTab( "Hot Tube", null, p2, " Hot Tube" );
// constructing the third panel
JLabel l3 = new JLabel( " Temperature Change!" ); JPanel p3 = new JPanel(); tab.addTab( "Temperature Change", null, p3, " Temperature Change" );
// constructing the fourth panel
JLabel l4 = new JLabel( "Customer" ); JPanel p4 = new JPanel(); tab.addTab( "Customer", null, p4, " Customer" );
// constructing the fifth panel
JLabel l5 = new JLabel( "General" ); JPanel p5 = new JPanel(); tab.addTab( "General", null, p5, " General" );
//constructing the last panel
JLabel l6 = new JLabel( "Manufacture"); JPanel p6 = new JPanel(); tab.addTab( "Manufacture", null, p6, " Manufacture" );
//constructing the Comment panel
JLabel l7= new JLabel("Customer Comments?"); JPanel p7 = new JPanel(); tab.addTab ("Customer Comments?",null,p7,"Customer Comments?"); textPrompt = new JLabel("Customer Comments here please!"); inputText = new JTextArea(5, 15); inputText.setLineWrap(true); inputText.setWrapStyleWord(true);
//instantiate two panels, one for input and output Panel inputPanel = new Panel();
//add components to window container = getContentPane();
//use borderlayout to position our two i/o panels container.setLayout(new BorderLayout()); inputPanel.setLayout(new FlowLayout());
//add components to panels inputPanel.add(textPrompt); inputPanel.add(inputText);
//add panels to our primary borderlayout add(inputPanel, BorderLayout.NORTH);
// add JTabbedPane to container getContentPane().add( tab );
setSize( 400, 250 ); setVisible( true ); }
public static void main( String args[] ) { FinalProject demo = new FinalProject(); demo.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); }
}
View Answers
Related Pages:
Final Project - Java Beginners
, but it is suggested that you begin working on the finalproject assignment in Week 5, which...Final Project The importance of a graphical user interface in programming is paramount in being successful in the business industry. This project
Final Project II - Java Beginners FinalProject II Is there anyway I can get the project back by Saturday??? It is due on Sunday by midnight...Thank You
Java Final Project - Java Beginners JavaFinal Project I am having a real hard time with this java... finalproject. This is your opportunity to show off your skills!
Overall...()
{
super( "FinalProject " );
JTabbedPane tab = new JTabbedPane();
// constructing
Java Final Project Error - Java Beginners JavaFinalProject Error It isnt showing the result when I press... inputKey;
Container container;
public FinalProject()
{
super( "FinalProject " );
JTabbedPane tab = new JTabbedPane();
// constructing the Pool
important for all final years student
important for all final years student i need a java program for my project, java program for getting path of the file in console while reading... letter content in from glassorry ,i need it in simple java code meanwhile using
important for all final years student
important for all final years student i need a java program for my project, java program for getting path of the file in console while reading... it in simple java code meanwhile using some inbuilt function with control flow conditions
important for all final years student
important for all final years student i need a java program for my project, java program for getting path of the file in console while reading... it in simple java code meanwhile using some inbuilt function with control flow conditions
final keyword final keyword why is final keyword used in java
Final Methods - Java Tutorials
The final Keyword in Java
In Java, final keyword is applied in various context. The final
keyword is a modifier means the final class can't be extended....
final classes
The class declared as final can't be subclass or extend
Java Final Variable JavaFinal Variable I have some confusion --Final variable has single copy for each object so can we access final variable through class name,or it is necessary to create object for accessing final variable
project
project i need a project in java backend sql
project
project suggest a network security project based on core java with explanation
Java: Final keyword Java NotesFinal keyword
The Final word on the final keyword.
How often do you use final?
Copyleft 2005 Fred Swartz
MIT License
project
project sir
i want a java major project in railway reservation
plz help me and give a project source code with entire validation
thank you
Java 5 - "final" is not final anymore - Java Tutorials Java 5 - "final" is not final anymore
2004-10-07 The Java Specialists' Newsletter [Issue 096] - Java 5 - "final" is not final anymore
Author... will start
moving to Java 5.
Java 5 - "final" is not final anymore
project detail - Java Beginners project detail How to do project in java
I am doing final MCA i want to do project
I am willing to do project in java or j2ee. But I have no idea so I want some idea about project in java
please give some sample project
Project
Project How to show Questions randomly so that no two student get the same questions in online examination system project in Java Server Pages my email id is moiza_sayyed@rediffmail.com
The final Keyword
The final Keyword
The
final is a keyword. This is similar to const keyword in other... a variable
or class with this name in your Java program.
In
the Java programming
Java final keyword Javafinal keyword
The final is a very important keyword in java, which... with the name "Final" in a Java program. We can have final methods, final... when final keyword use variable
constant
Exampleof final jeyword in Java
project project hi , we r working on one project related to our results. we using java and for back end sqlserver 2005.
In dis we are trying to retrieve result from some site and store it in our data base so that we can perform
Project
Project Hi,
Am starting a new project to draw a 2d graph using java swing and opengl,where in the input for X-axis and Y-axis co=ordinates should be accepted from user...
As am very new to this am seeking help so pls help
project... project...
enter 10 integers, store it using array then display them from highest to lowest.
2.enter 10 integers, store it using array then display them from lowest to highest
number to words conversion create a java program
Java final Javafinal
In the Java programming language, the keyword "final" is used
with different entity which makes it unchangeable later. We can have final
methods, final
project
){
XYSeriesCollection dataset = new XYSeriesCollection();
final XYSeries data = new
project
project write a program in java to develop a port scanner for common devices(HTTP,FTP,Telnet
project
project how to make blinking eyes using arc, applet in core java
project
should write Java code, so as to:
1. Compute Gross Monthly Salary for all employees
TYBsc IT final project (MOBILE BASED SMS SEARCH ENGIN)
TYBsc IT finalproject (MOBILE BASED SMS SEARCH ENGIN) How to send... modem?
Pls give me fast reply becoz my porject(TYBsc IT)final has not been completed. so i requested to you pls answer my question. My project name is MOBILE
final
final what does final means in "public static final void main (string args[])" ?
keyword final can be assigned only once. They cannot be modified
private and final - Java Interview Questions
and final modifier in java Hi Friend,
Private modifier indicates... be accessed or instantiated outside.
Final modifier indicates.... They cannot be overriden by subclasses. The final class can't be extended
Static final variables - Java Beginners
Static final variables can a static final variable be accessed by a instance (non-static)method? Hi,
static final variable u can... Xyz{
private static final String name="xyz";
public void displayData
core java project by using databse
core javaproject by using databse hello sir,
i'm a b.tech final year student.... i wantto make a project on java with database... can u plzz suggest me how i can start for it.... means on which topic i can make project
Can a main method be declared final?
be override in a subclass.
for more about main method be declared final in Java...Can a main method be declared final? Hi,
Can a main method be declared final?
Thanks
Hi,
Yes we can. The final method can
difference between enum and final class?
difference between enum and final class? what is the difference between enum and final class in java?
The java.lang.Enum is an abstract class, it is the common base class of all Java language enumeration types
What is the purpose of declaring a variable as final?
What is the purpose of declaring a variable as final? Hi,
What is the purpose of declaring a variable as final?
Thanks
Hi,
In Java when we declare a final variable as a variable which has been initialized
Final Key Word in Java
.style1 {
text-align: center;
}
Final key word in java
In java... in java 1.1, its declaration
lacks an initializer. A blank final can only.... Java compiler runs a flow analysis
to ensure every assignment to blank final
PHP Final Keyword Final Keyword in PHP:
If you are familiar with Java then you must know the functionality of Final keyword. Final keyword prevents child classes from overriding a method of super or parent class. If we declare a class as final
MCA Project Training
:
· MCA Project Training in Core Java
· MCA Project Training in Hibernate
· MCA Project Training in Java Persistence API (JPI...; MCA Project Training in Java
· MCA Project Training in JUnit
Java method final parameter Java method final parameter
Example below demonstrates the working of javafinal
keyword... set to final. This means double type radius is no more a variable
Create Project SplashScreen - Java Beginners
Create Project SplashScreen I want to Create project splashscreen... can create in java.
Hi Friend,
Try the following code:
1... extends JFrame{
JButton SUBMIT;
JPanel panel;
JLabel label1,label2;
final
abt java project - Java Beginners
abt java project this program compile sucessfully but data is not store in data base if any thing correction plz do it
import java.awt.*;
import... simple extends JFrame implements ActionListener{
private static final long
java project java project how many tables are required in backend for online examination system project in jsp
If backend is SQL
java project java project i would like to get an idea of how to do a project by doing a project(hospital management) in java.so could you please provide me with tips,UML,source code,or links of already completed project with documentation
Explain final class, abstract class and super class.
Explain final class, abstract class and super class. Explain final class, abstract class and super class.
Explain final class, abstract class and super class.
A final class cannot be extended. A final class
Help me please with my final homework
Help me please with my final homework Write a Java program of your choice that demonstrates the following concepts:
? Input and Output.
? Selection/Conditional (e.g. if statement).
? Arithmetic.
? Loops.
? Arrays
Project realated help - JSP-Servlet Project realated help Hi sir i need your assistance em stuck at a point,actualy i am making final year project,i am making OTRS system in java em... all users groups and ques and others thing r working but now em on final stage
JAVA project JAVA project How to extract tags and their corresponding properties of a "cascading style sheet" file using JAVA
java project java project Connecting to MySQL database and retrieving and displaying data in JSP page by using netbeans
project enquire project enquire **hi admin,
are you had project about "project tracking" on java