Monitored GregorianCalendar : Calendar Date « Development Class « Java






Monitored GregorianCalendar

     


import java.util.*;

/**
 * @author Matthew D. Hicks
 *
 */
public class MonitoredGregorianCalendar extends GregorianCalendar {
  private ArrayList listeners;
  
  private boolean blocked;
  
  public MonitoredGregorianCalendar() {
    super();
    listeners = new ArrayList();
  }
  
  public MonitoredGregorianCalendar(int year, int month, int dayOfMonth) {
    super(year, month, dayOfMonth);
    listeners = new ArrayList();
  }
  
  public MonitoredGregorianCalendar(int year, int month, int dayOfMonth, int hourOfDay, int minute) {
    super(year, month, dayOfMonth, hourOfDay, minute);
    listeners = new ArrayList();
  }
  
  public MonitoredGregorianCalendar(int year, int month, int dayOfMonth, int hourOfDay, int minute, int second) {
    super(year, month, dayOfMonth, hourOfDay, minute, second);
    listeners = new ArrayList();
  }
  
  public MonitoredGregorianCalendar(Locale aLocale) {
    super(aLocale);
    listeners = new ArrayList();
  }
  
  public MonitoredGregorianCalendar(TimeZone zone) {
    super(zone);
    listeners = new ArrayList();
  }
  
  public void add(int field, int amount) {
    if (!blocked) {
      blocked = true;
      super.add(field, amount);
      blocked = false;
      changed(CalendarChangeListener.TYPE_ADD, field, amount);
    } else {
      super.add(field, amount);
    }
  }
  
  public void roll(int field, boolean up) {
    if (!blocked) {
      blocked = true;
      super.roll(field, up);
      blocked = false;
      int amount = 0;
      if (up) amount = 1;
      changed(CalendarChangeListener.TYPE_ROLL, field, amount);
    } else {
      super.roll(field, up);
    }
  }
  
  public void roll(int field, int amount) {
    if (!blocked) {
      blocked = true;
      super.roll(field, amount);
      blocked = false;
      changed(CalendarChangeListener.TYPE_ROLL, field, amount);
    } else {
      super.roll(field, amount);
    }
  }
  
  public void setGregorianChange(Date date) {
    if (!blocked) {
      blocked = true;
      super.setGregorianChange(date);
      blocked = false;
      changed(CalendarChangeListener.TYPE_SET, CalendarChangeListener.TIME_IN_MILLIS, date.getTime());
    } else {
      super.setGregorianChange(date);
    }
  }
  
  public void setTimeZone(TimeZone zone) {
    if (!blocked) {
      blocked = true;
      super.setTimeZone(zone);
      blocked = false;
      changed(CalendarChangeListener.TYPE_SET, CalendarChangeListener.TIME_ZONE, zone.getRawOffset());
    } else {
      super.setTimeZone(zone);
    }
  }
  
  public void set(int field, int value) {
    if (!blocked) {
      blocked = true;
      super.set(field, value);
      blocked = false;
      changed(CalendarChangeListener.TYPE_SET, field, value);
    } else {
      super.set(field, value);
    }
  }
  
  public void setFirstDayOfWeek(int value) {
    if (!blocked) {
      blocked = true;
      super.setFirstDayOfWeek(value);
      blocked = false;
      changed(CalendarChangeListener.TYPE_SET, CalendarChangeListener.FIRST_DAY_OF_WEEK, value);
    } else {
      super.setFirstDayOfWeek(value);
    }
  }
  
  public void setLenient(boolean lenient) {
    if (!blocked) {
      blocked = true;
      super.setLenient(lenient);
      blocked = false;
      int amount = 0;
      if (lenient) amount = 1;
      changed(CalendarChangeListener.TYPE_SET, CalendarChangeListener.LENIENT, amount);
    } else {
      super.setLenient(lenient);
    }
  }
  
  public void setMinimalDaysInFirstWeek(int value) {
    if (!blocked) {
      blocked = true;
      super.setMinimalDaysInFirstWeek(value);
      blocked = false;
      changed(CalendarChangeListener.TYPE_SET, CalendarChangeListener.MINIMAL_DAYS_IN_FIRST_WEEK, value);
    } else {
      super.setMinimalDaysInFirstWeek(value);
    }
  }
  
  public void setTimeInMillis(long millis) {
    if (!blocked) {
      blocked = true;
      super.setTimeInMillis(millis);
      blocked = false;
      changed(CalendarChangeListener.TYPE_SET, CalendarChangeListener.TIME_IN_MILLIS, millis);
    } else {
      super.setTimeInMillis(millis);
    }
  }
  
  private void changed(int type, int field, long value) {
    if ((listeners != null) && (!blocked)) {
      for (int i = 0; i < listeners.size(); i++) {
        ((CalendarChangeListener)listeners.get(i)).changed(this, type, field, value);
      }
    }
  }
  
  public void addListener(CalendarChangeListener listener) {
    listeners.add(listener);
  }
}


/**
 * @author Matthew D. Hicks
 *
 */
interface CalendarChangeListener {
  public static final int TYPE_ADD = 1;
  public static final int TYPE_ROLL = 2;
  public static final int TYPE_SET = 3;
  
  public static final int TIME_ZONE = 1;
  public static final int FIRST_DAY_OF_WEEK = 2;
  public static final int LENIENT = 3;
  public static final int MINIMAL_DAYS_IN_FIRST_WEEK = 4;
  public static final int TIME_IN_MILLIS = 5;
  
  /**
   * This method is called when a MonitoredGregorianCalendar changes.
   * 
   * @param c
   *    A reference to the MonitoredGregorianCalendar that has been changed.
   * @param type
   *    The type of change that occurred:
   *      TYPE_ADD, TYPE_ROLL, or TYPE_SET
   * @param field
   *    The field that was changed either a Calendar type or:
   *      TIME_ZONE, FIRST_DAY_OF_WEEK, LENIENT, MINIMAL_DAYS_IN_FIRST_WEEK, or TIME_IN_MILLIS
   * @param value
   *    The value associated with the change.
   */
  public void changed(MonitoredGregorianCalendar c, int type, int field, long value);
}

   
    
    
    
    
  








Related examples in the same category

1.Create a Date object using the Calendar class
2.When does the UNIX date get into troubleWhen does the UNIX date get into trouble
3.Trivial class to show use of Date and Calendar objectsTrivial class to show use of Date and Calendar objects
4.Convert longs (time_t in UNIX terminology) to seconds
5.Show use of Calendar objectsShow use of Calendar objects
6.How quickly can you press return
7.Easter - compute the day on which Easter fallsEaster - compute the day on which Easter falls
8.Show use of Calendar get() method with various parameters
9.TimeComputation for processing sqrt and Input and Output operations.
10.Bean to display a month calendar in a JPanelBean to display a month calendar in a JPanel
11.Show some date uses 1
12.Show dates before 1970
13.Compare Dates
14.Compare File Dates
15.If a date is after another date
16.If a date is before another date
17.Compute days between 2 dates
18.Show some calendar calculations
19.The best way to format a date/time is to use
20.Create SimpleDateFormats from a string read from a file
21.DateCalAdd -- compute the difference between two dates
22.Show some date uses
23.Calendar DemoCalendar Demo
24.DateDiff -- compute the difference between two dates
25.DateAdd -- compute the difference between two dates
26.Increment and Decrement a Date Using the Calendar Class
27.Increment and Decrement Months Using the Calendar Class
28.Add or subtract days to current date using Java Calendar
29.Subtract days from current date using Calendar.add method
30.Add hours to current date using Calendar.add method
31.Subtract hours from current date using Calendar.add method
32.Add minutes to current date using Calendar.add method
33.Subtract minutes from current date using Calendar.add method
34.Add months to current date using Calendar.add method
35.Subtract months from current date using Calendar.add method
36.Add seconds to current date using Calendar.add method
37.Subtract seconds from current time using Calendar.add method
38.Add week to current date using Calendar.add method
39.Add hours, minutes or seconds to a date
40.Subtract week from current date
41.Add year to current date using Calendar.add method
42.Add 10 months to the calendar
43.Subtract 1 year from the calendar
44.Subtract year from current date
45.Calendar adjust date automatically
46.Display Day of Week using Java Calendar
47.Display Month of year using Java Calendar
48.Display full date time
49.Get a List of Month Names
50.Get current date, year and month
51.Get Week of month and year using Java Calendar
52.Get the number of days in that month
53.Get the current month name
54.Get day, month, year value from the current date
55.Convert day of the year to date
56.Pass the year information to the calendar object
57.Get the last date of a month
58.Convert day of year to day of month
59.Determine the day of the week
60.Set with GregorianCalendar.YEAR, MONTH and DATE
61.Determine if an hour is between an interval
62.Parse a String to obtain a Date/GregorianCalendar object
63.Try month in a leap year
64.Determining If a Year Is a Leap Year
65.Determining the Day-of-Week for a Particular Date
66.Subtract 30 days from the calendar
67.Date and time with month
68.Date and time with day and month fully spelled-out
69.Formatting the Time Using a Custom Format
70.Convert string date to long value
71.Display date with a short day and month name
72.Convert Date to String
73.Validate a date Using DateFormat
74.Get the day name
75.Use the SimpleDateFormat from the java.text package
76.Formatting date with full day and month name and show time up to milliseconds with AM/PM
77.Getting the Current Time
78.Output current time: %tc
79.Swing: Date Time EditorSwing: Date Time Editor
80.Get day of week
81.Convert milliseconds value to date
82.Calculate the age
83.Format a duration in ms into a string as "Days,Hours,minutes and seconds"
84.Formatting Symbols for SimpleDateFormat
85.Express a duration in term of HH:MM:SS
86.Match DateMatch Date
87.Checks if two calendar objects represent the same local time.
88.Checks if two date objects are on the same day ignoring time
89.Checks if two date objects represent the same instant in time
90.Calendar Comparator
91.Calendar To String
92.Formatter that caches formatted date information
93.Date Format Cache.
94.Date and time formatting utilities and constants.
95.Formatting dates into Strings.
96.RFC date format
97.Utilities for java.util.Date
98.Calendar operations
99.Calendar Util