| | |
Lost with how to start
Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
![]() |
•
•
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? (Social Media and Online Communities)
- 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
Views: 592 | Replies: 1
| Thread Tools | Search this Thread |
Tag cloud for Java
911 addressbook android api append apple applet application arguments array arrays automation binary bluetooth character chat class classes client code component csv database draw eclipse error event exception file fractal ftp game givemetehcodez graphics gui helpwithhomework html ide image input integer j2me japplet java javaarraylist javaprojects jmf jni jpanel julia linked linux list loop map method methods mobile netbeans newbie number object objects oracle oriented panel print printf problem program programming project projects recursion replaydirector reporting researchinmotion return robot rotatetext scanner screen se server set size sms socket sort sql stream string swing test threads time transfer tree ubuntu windows






