Interface TimeChanger

All Known Implementing Classes:
TimeSpinnerChanger

public interface TimeChanger
An interface for a component which provides a mechanism for modifying hours, minutes, and seconds in a date. This component would be presented to the user with a JAnalogClock component, and the hour, minute, and seconds modifications would be reflected in that JAnalogClock component.
Author:
Nathan Brizzee
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Provides a hook for updating the JAnalogClock component when the user modifies the hour, minutes, and seconds.
    void
    setHoursVal(int val)
     
    void
    setMinutesVal(int val)
     
    void
    setSecondsVal(int val)
     
  • Method Details

    • setAnalogClockRef

      void setAnalogClockRef(JAnalogClock analogClock)
      Provides a hook for updating the JAnalogClock component when the user modifies the hour, minutes, and seconds.
    • setHoursVal

      void setHoursVal(int val)
    • setMinutesVal

      void setMinutesVal(int val)
    • setSecondsVal

      void setSecondsVal(int val)