| | |
Lost with how to start
![]() |
•
•
Join Date: Nov 2008
Posts: 4
Reputation:
Solved Threads: 0
I have had to miss my last classes due to having to go to my doctor in order to prep me for surgery. My professor has placed the final assignment online and i have no where to begin. I'll take any help and would like to add that while i can understand programs when reading them, I am a complete lost when asked to write them. Heres the program:Implement a class named Date that
Has three instance variables (month & day & year) of type int
Has a constructor that accepts three input parametes
Has a boolean method called isBirthday
Has a method called getZodiacSign that returns the appropriate icon
Use the DateApplication class (given) as the main program
This is the code i have been given and also pictures for the zodiac symbols
there is an extra credit assignment for including the chinesenewyear but im not concerned with that.
Has three instance variables (month & day & year) of type int
Has a constructor that accepts three input parametes
Has a boolean method called isBirthday
Has a method called getZodiacSign that returns the appropriate icon
Use the DateApplication class (given) as the main program
This is the code i have been given and also pictures for the zodiac symbols
Java Syntax (Toggle Plain Text)
import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.*; public class DateApplication extends JFrame { private JButton birthdayButton,zodiacButton,chineseButton; private JTextField monthField, dayField, yearField; private JLabel inputPrompt; private JPanel panel; public static void main() { DateApplication frame = new DateApplication(); frame.setSize(350,300); frame.createGUI(); frame.setTitle("Fun with Dates"); frame.setVisible(true); } private void createGUI() { setDefaultCloseOperation(EXIT_ON_CLOSE); Container window = getContentPane(); window.setLayout(new FlowLayout()); panel = new JPanel(); panel.setPreferredSize(new Dimension(300,200)); panel.setBackground(Color.white); birthdayButton = new JButton("Check Birthday"); birthdayButton.addActionListener(new BirthdayDrawAction()); zodiacButton = new JButton("Zodiac"); zodiacButton.addActionListener(new ZodiacDrawAction()); chineseButton = new JButton("Chinese Year"); chineseButton.addActionListener(new ChineseDrawAction()); inputPrompt = new JLabel("Enter your bithday mm-dd-yyyy: "); monthField = new JTextField(2); dayField = new JTextField(2); yearField = new JTextField(4); window.add(inputPrompt); window.add(monthField); window.add(dayField); window.add(yearField); window.add(birthdayButton); window.add(zodiacButton); window.add(chineseButton); window.add(panel); } private class BirthdayDrawAction implements ActionListener { public void actionPerformed(ActionEvent event) { int month, day, year; String inputMonth = monthField.getText(); month = Integer.parseInt(inputMonth); String inputDay = dayField.getText(); day = Integer.parseInt(inputDay); String inputYear = yearField.getText(); year = Integer.parseInt(inputYear); Date theDate = new Date(month,day,year); Graphics g = panel.getGraphics(); g.setColor(Color.white); g.fillRect(0,0,300,200); g.setColor(Color.red); Font myFont = new Font("SansSerif", Font.BOLD, 24); g.setFont(myFont); if (theDate.isBirthday()) { g.drawString("Happy Birthday",20,100); } else { g.drawString("It's not your Birthday",20,100); } } } private class ZodiacDrawAction implements ActionListener { public void actionPerformed(ActionEvent event) { int month, day, year; String inputMonth = monthField.getText(); month = Integer.parseInt(inputMonth); String inputDay = dayField.getText(); day = Integer.parseInt(inputDay); String inputYear = yearField.getText(); year = Integer.parseInt(inputYear); Graphics g = panel.getGraphics(); panel.removeAll(); Date theDate = new Date(month,day,year); Icon zodiacIcon = null; // zodiacIcon = theDate.getZodiacSign(); JLabel label = new JLabel(zodiacIcon); panel.add(label); panel.revalidate(); panel.repaint(); } } private class ChineseDrawAction implements ActionListener { public void actionPerformed(ActionEvent event) { int month, day, year; String inputMonth = monthField.getText(); month = Integer.parseInt(inputMonth); String inputDay = dayField.getText(); day = Integer.parseInt(inputDay); String inputYear = yearField.getText(); year = Integer.parseInt(inputYear); Icon ChineseIcon = null; Graphics g = panel.getGraphics(); panel.removeAll(); Date theDate = new Date(month,day,year); Icon chineseIcon = null; // chineseIcon = theDate.getChineseYear(); JLabel label = new JLabel(chineseIcon); panel.add(label); panel.revalidate(); panel.repaint(); } } }
![]() |
Similar Threads
- Not sure where to start. (C++)
- help,lost start menu (Windows NT / 2000 / XP)
- What happens when you lost everything? start again? (Growing an Online Community)
- Lost browser links,internet options etc...toolbar (Web Browsers)
- Lost Start Menu..etc... (Viruses, Spyware and other Nasties)
- Red Hat 9 on VMWare 4 (*nix Software)
Other Threads in the Java Forum
- Previous Thread: Applet question..
- Next Thread: How to get a value from a string variable
| Thread Tools | Search this Thread |
911 actionlistener addball addressbook android api applet application array automation binary block bluetooth button character class client code compile component consumer css csv database desktop developmenthelp eclipse ee error fractal ftp game gameprogramming givemetehcodez graphics gui html ide image j2me j2seprojects japplet java javaarraylist javac javaee javaprojects jni jpanel julia jvm lego linked linux loan mac map method mobile netbeans notdisplaying number objects online oriented phone printf problem program programming project projects recursion replaydirector reporting researchinmotion rotatetext rsa scanner se server service set singleton sms software sort sql swing system test textfields threads time title tree tutorial-sample ubuntu update windows






