[jsword-svn] common/java/limbo/org/crosswire/common/swing s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Mon May 9 19:10:42 MST 2005
Update of /cvs/jsword/common/java/limbo/org/crosswire/common/swing
In directory www.crosswire.org:/tmp/cvs-serv11169/java/limbo/org/crosswire/common/swing
Modified Files:
DocumentWriter.java EirPanel.java DebugContainerListener.java
MenuUtil.java AppletFrame.java RowColumns.java
RowTableModel.java ExtensionFileFilter.java MapTable.java
MapCellRenderer.java RowTable.java SortRenderer.java
ListListModel.java
Log Message:
Moved GPL to be a file comment.
Fixed the JSword build fail on missing resource diirectory.
Made ant clean also remove the keystore file.
Index: MenuUtil.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/MenuUtil.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MenuUtil.java 28 Nov 2004 21:34:09 -0000 1.3
--- MenuUtil.java 10 May 2005 02:10:40 -0000 1.4
***************
*** 1,3 ****
--- 1,25 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
+
import java.awt.Component;
import java.awt.Insets;
***************
*** 24,47 ****
* Various Menu creation utilities.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class MenuUtil
--- 46,52 ----
* Various Menu creation utilities.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class MenuUtil
Index: RowTableModel.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/RowTableModel.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** RowTableModel.java 9 May 2005 01:28:42 -0000 1.1
--- RowTableModel.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 9,33 ****
* The RowTableModel defines the "model" behaviour for a RowTable.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author DM Smith [dmsmith555 at yahoo dot com]
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class RowTableModel extends AbstractTableModel
--- 30,37 ----
* The RowTableModel defines the "model" behaviour for a RowTable.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author DM Smith [dmsmith555 at yahoo dot com]
* @author Joe Walker [joe at eireneh dot com]
*/
public class RowTableModel extends AbstractTableModel
Index: ExtensionFileFilter.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/ExtensionFileFilter.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ExtensionFileFilter.java 21 Sep 2004 17:45:47 -0000 1.2
--- ExtensionFileFilter.java 10 May 2005 02:10:40 -0000 1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 8,31 ****
* ExtensionFileFilter.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class ExtensionFileFilter extends FileFilter
--- 29,35 ----
* ExtensionFileFilter.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class ExtensionFileFilter extends FileFilter
Index: DocumentWriter.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/DocumentWriter.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DocumentWriter.java 27 Jun 2004 22:09:00 -0000 1.1
--- DocumentWriter.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 15,38 ****
* notification of changes (serves as the model in an MVC relationship).
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class DocumentWriter extends Writer
--- 36,42 ----
* notification of changes (serves as the model in an MVC relationship).
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class DocumentWriter extends Writer
Index: MapTable.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/MapTable.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MapTable.java 9 May 2005 01:28:42 -0000 1.1
--- MapTable.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 10,33 ****
* A simple table that renders text, potentially multiline.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author DM Smith [ dmsmith555 at yahoo dot com]
- * @version $Id$
*/
public class MapTable extends JTable
--- 31,37 ----
* A simple table that renders text, potentially multiline.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author DM Smith [ dmsmith555 at yahoo dot com]
*/
public class MapTable extends JTable
Index: AppletFrame.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/AppletFrame.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AppletFrame.java 28 Nov 2004 21:34:09 -0000 1.2
--- AppletFrame.java 10 May 2005 02:10:40 -0000 1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 19,42 ****
* where appropriate.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class AppletFrame extends JFrame
--- 40,46 ----
* where appropriate.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class AppletFrame extends JFrame
Index: EirPanel.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/EirPanel.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** EirPanel.java 28 Nov 2004 21:34:09 -0000 1.2
--- EirPanel.java 10 May 2005 02:10:40 -0000 1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 18,41 ****
* a separate dialog.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class EirPanel extends JPanel
--- 39,45 ----
* a separate dialog.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class EirPanel extends JPanel
Index: DebugContainerListener.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/DebugContainerListener.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DebugContainerListener.java 9 May 2005 01:28:42 -0000 1.1
--- DebugContainerListener.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 18,41 ****
* Attempt to find parenting errors.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class DebugContainerListener implements ContainerListener
--- 39,45 ----
* Attempt to find parenting errors.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class DebugContainerListener implements ContainerListener
Index: SortRenderer.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/SortRenderer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SortRenderer.java 9 May 2005 01:28:42 -0000 1.1
--- SortRenderer.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 14,38 ****
* A SortRenderer indicates the column that is sorted by italizing it.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author DM Smith [dmsmith555 at yahoo dot com]
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class SortRenderer extends DefaultTableCellRenderer
--- 35,42 ----
* A SortRenderer indicates the column that is sorted by italizing it.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author DM Smith [dmsmith555 at yahoo dot com]
* @author Joe Walker [joe at eireneh dot com]
*/
public class SortRenderer extends DefaultTableCellRenderer
Index: RowColumns.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/RowColumns.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** RowColumns.java 9 May 2005 01:28:42 -0000 1.1
--- RowColumns.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,21 ****
! /*
! * Distribution Licence:
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
! *
* See the GNU General Public License for more details.
* The License is available on the internet at:
! * http://www.gnu.org/copyleft/gpl.html,
* or by writing to:
! * Free Software Foundation, Inc.
! * 59 Temple Place - Suite 330
! * Boston, MA 02111-1307, USA
! *
! * The copyright to this program is held by it's authors
! * Copyright: 2004
*/
package org.crosswire.common.swing;
--- 1,22 ----
! /**
! * Distribution License:
! * JSword is free software; you can redistribute it and/or modify it under
! * the terms of the GNU General Public License, version 2 as published by
! * the Free Software Foundation. This program is distributed in the hope
! * that it will be useful, but WITHOUT ANY WARRANTY; without even the
! * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
+ *
* The License is available on the internet at:
! * http://www.gnu.org/copyleft/gpl.html
* or by writing to:
! * Free Software Foundation, Inc.
! * 59 Temple Place - Suite 330
! * Boston, MA 02111-1307, USA
! *
! * Copyright: 2005
! * The copyright to this program is held by it's authors.
! *
! * ID: $ID$
*/
package org.crosswire.common.swing;
***************
*** 28,31 ****
--- 29,34 ----
* the prototypes.
*
+ * @see gnu.gpl.Licence for license details.
+ * The copyright to this program is held by it's authors.
* @author DM Smith [ dmsmith555 at yahoo dot com]
*/
Index: MapCellRenderer.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/MapCellRenderer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MapCellRenderer.java 9 May 2005 01:28:42 -0000 1.1
--- MapCellRenderer.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 14,37 ****
* A MapCellRenderer that renders multiline text.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author DM Smith [ dmsmith555 at yahoo dot com]
- * @version $Id$
*/
public class MapCellRenderer extends JTextArea implements TableCellRenderer
--- 35,41 ----
* A MapCellRenderer that renders multiline text.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author DM Smith [ dmsmith555 at yahoo dot com]
*/
public class MapCellRenderer extends JTextArea implements TableCellRenderer
Index: ListListModel.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/ListListModel.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ListListModel.java 9 May 2005 01:28:42 -0000 1.1
--- ListListModel.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 9,32 ****
* A simple implementation of ListModel that is backed by a List.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class ListListModel extends AbstractListModel implements ListModel
--- 30,36 ----
* A simple implementation of ListModel that is backed by a List.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class ListListModel extends AbstractListModel implements ListModel
Index: RowTable.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/swing/RowTable.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** RowTable.java 9 May 2005 01:28:42 -0000 1.1
--- RowTable.java 10 May 2005 02:10:40 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.common.swing;
***************
*** 20,44 ****
* Presents a table of items to a user in a table.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author DM Smith [dmsmith555 at yahoo dot com]
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class RowTable extends JTable
--- 41,48 ----
* Presents a table of items to a user in a table.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author DM Smith [dmsmith555 at yahoo dot com]
* @author Joe Walker [joe at eireneh dot com]
*/
public class RowTable extends JTable
More information about the jsword-svn
mailing list