All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sourceforge.jcalendarbutton.JTimePopup Maven / Gradle / Ivy

Go to download

JCalendarButton is a simple java swing component that displays a popup calendar next to a date input field.

The newest version!
/**
 * JTimePopup.java
 *
 * @author Don Corley 
 * @version 1.0.0
 */
 
package org.sourceforge.jcalendarbutton;

import java.util.Date;

/** 
 * Maintain backwards compatibility when I fixed the package name.
 */
@Deprecated
public class JTimePopup extends net.sourceforge.jcalendarbutton.JTimePopup
{
	private static final long serialVersionUID = 1L;

	/**
     * Creates new form TimePopup.
     */
    public JTimePopup()
    {
        super();
    }
    /**
     * Creates new form TimePopup.
     * @param date The initial date for this button.
     */
    public JTimePopup(Date date)
    {
        super(date);
    }
    /**
     * Creates new form TimePopup.
     * @param strDateParam The name of the date property (defaults to "date").
     * @param date The initial date for this button.
     */
    public JTimePopup(String strDateParam, Date date)
    {
        super(strDateParam, date);
    }
    /**
     * Creates new form TimePopup.
     * @param strDateParam The name of the date property (defaults to "date").
     * @param date The initial date for this button.
     * @param strLanguage The language to use.
     */
    public JTimePopup(String strDateParam, Date date, String strLanguage)
    {
        super(strDateParam, date, strLanguage);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy