/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package de.wannawork.jcalendar; import javax.swing.Icon; import javax.swing.JButton; /** * * @author mg */ public class JCalendarInvokerButton extends JButton{ public JCalendarInvokerButton() { super(); } public JCalendarInvokerButton(Icon icon) { super(icon); } }