forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
516 B
34 lines
516 B
/*
|
|
* TimeCalendarDialog.java
|
|
*
|
|
* Created on 28 de Janeiro de 2005, 15:52
|
|
*/
|
|
|
|
package siprp.ui;
|
|
|
|
import java.awt.*;
|
|
import javax.swing.*;
|
|
|
|
import com.evolute.utils.ui.*;
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public class TimeCalendarDialog extends JCalendarDialog
|
|
{
|
|
protected int interval;
|
|
|
|
/** Creates a new instance of TimeCalendarDialog */
|
|
public TimeCalendarDialog( JFrame owner, int interval )
|
|
{
|
|
super( owner );
|
|
this.interval = interval;
|
|
setupComponents();
|
|
}
|
|
|
|
private void setupComponents()
|
|
{
|
|
|
|
}
|
|
}
|