1. able2know
  2. » Discussions
  3. » need help with java

need help with java

Reply Mon 18 Feb, 2008 01:00 am
I have a project with Java, which change the clock display from a 24 hour clock to a 12 hour clock. (The code is below)
I could do it by changing the method updateDisplay, but the problem is, I have to do it without changing the method updateDisplay and class numberDisplay.
But I could modify timeTick method and clockDisplay class.

Here the zip file

I have no idea how to do it, I really need help.
Thanks in advance.

Code:
public class ClockDisplay
{
private NumberDisplay hours;
private NumberDisplay minutes;
private String displayString; // simulates the actual display

/**
* Constructor for ClockDisplay objects. This constructor
* creates a new clock set at 00:00.
*/

public ClockDisplay()
{
hours = new NumberDisplay(24);
minutes = new NumberDisplay(60);
updateDisplay();
}

/**
* Constructor for ClockDisplay objects. This constructor
* creates a new clock set at the time specified by the
* parameters.
*/

public ClockDisplay(int hour, int minute)
{
hours = new NumberDisplay(24);
minutes = new NumberDisplay(60);
setTime(hour, minute);
}

/**
* This method should get called once every minute - it makes
* the clock display go one minute forward.
*/

public void timeTick()
{
minutes.increment();
if(minutes.getValue() == 0)
{
// it just rolled over!
hours.increment();
}
updateDisplay();
}

/**
* Set the time of the display to the specified hour and
* minute.
*/

public void setTime(int hour, int minute)
{
hours.setValue(hour);
minutes.setValue(minute);
updateDisplay();
}

/**
* Return the current time of this display in the format HH:MM.
*/

public String getTime()
{
return displayString;
}


/**
* Update the internal string that represents the display.
* Do not change it
*/

private void updateDisplay()
{
displayString = hours.getDisplayValue() + ":" +
minutes.getDisplayValue();
}

}

Reply Mon 18 Feb, 2008 01:36 am
Here the zip file of everything
0 Replies
Copyright © 2008 able2know :: Page generated in 0.09 seconds on 09/06/2008 at 06:21:27 :: Active ingredients: LAMP, XHTML, CSS, JavaScript
Top End