View Javadoc
1   /******************************************************************************
2    * JButton.java - A JButton implementing the JButtonI 
3    * $Id$
4    * 
5    * BuckoFIBS - Backgammon by BuckoSoft
6    * Copyright© 2011 - Dick Balaska - BuckoSoft, Corp.
7    * 
8    * $Log$
9    */
10  
11  /* 
12   * This program is free software: you can redistribute it and/or modify
13   * it under the terms of the GNU General Public License as published by
14   * the Free Software Foundation, either version 3 of the License, or
15   * (at your option) any later version.
16   *
17   * This program is distributed in the hope that it will be useful,
18   * but WITHOUT ANY WARRANTY; without even the implied warranty of
19   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20   * GNU General Public License for more details.
21   *
22   * You should have received a copy of the GNU General Public License
23   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24   *
25   * The Original Code is BuckoFIBS, <http://www.buckosoft.com/BuckoFIBS/>.
26   * The Initial Developer of the Original Code is Dick Balaska and BuckoSoft, Corp.
27   * 
28   */
29  
30  package com.buckosoft.swing;
31  
32  import javax.swing.JButton;
33  
34  /** A standard JButton implementing JButtonI
35   * 
36   * @author Dick Balaska
37   * @since 2011/05/10
38   * @version $Revision$ <br> $Date$
39   * @see <a href="http://cvs.buckosoft.com/Projects/BuckoFIBS/BuckoFIBS/src/main/java/com/buckosoft/swing/JJButton.java">cvs JJButton.java</a>
40   *
41   */
42  public class JJButton extends JButton implements JButtonI {
43  	private static final long serialVersionUID = 1L;
44  }