Statistics
| Revision:

svn-gvsig-desktop / trunk / applications / appgvSIG / src / com / lamatek / swingextras / DaySelectionListener.java @ 312

History | View | Annotate | Download (298 Bytes)

1
package com.lamatek.swingextras;
2

    
3
/**
4
 * Interface used by {@link com.lamatek.swingextras.JDateChooser JDateChooser}
5
 * to notify when the user has selected a date.
6
 */
7
public interface DaySelectionListener {
8
        
9
        /**
10
         * Called when a user selects a date.
11
         */
12
        public void daySelected(int day);
13
        
14
}