Update of /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/core/jgb/handlers/swing Modified Files: AbstractControlTagHandler.java AbstractTagHandler.java AbstractValueTagHandler.java BorderTagHandler.java ButtonTagHandler.java CheckTagHandler.java ComboTagHandler.java ConstantTagHandler.java ConstraintsTagHandler.java ConstructorTagHandler.java ControlTagHandler.java ControlsTagHandler.java GlueTagHandler.java GridbagTagHandler.java ItemTagHandler.java LabelTagHandler.java LayoutTagHandler.java MenuBarTagHandler.java MenuTagHandler.java MethodCallTagHandler.java NullTagHandler.java ObjectTagHandler.java PanelTagHandler.java ParameterTagHandler.java PropertyTagHandler.java RadioTagHandler.java RefTagHandler.java RegisterTagHandler.java ReturnTagHandler.java SeparatorTagHandler.java SheetTagHandler.java StrutTagHandler.java TabTagHandler.java TextfieldTagHandler.java ValueTagHandler.java WindowTagHandler.java WindowsTagHandler.java package.html Log Message: * all files: Switched to LGPL. Index: AbstractControlTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/AbstractControlTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** AbstractControlTagHandler.java 20 Apr 2003 02:12:26 -0000 1.12 --- AbstractControlTagHandler.java 27 Jun 2003 16:45:48 -0000 1.13 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: AbstractTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/AbstractTagHandler.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** AbstractTagHandler.java 10 Jun 2003 01:01:43 -0000 1.24 --- AbstractTagHandler.java 27 Jun 2003 16:45:48 -0000 1.25 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: AbstractValueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/AbstractValueTagHandler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** AbstractValueTagHandler.java 17 Oct 2002 02:02:32 -0000 1.8 --- AbstractValueTagHandler.java 27 Jun 2003 16:45:48 -0000 1.9 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: BorderTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/BorderTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BorderTagHandler.java 12 Jun 2003 16:55:34 -0000 1.4 --- BorderTagHandler.java 27 Jun 2003 16:45:48 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ButtonTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ButtonTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ButtonTagHandler.java 17 Oct 2002 02:02:32 -0000 1.5 --- ButtonTagHandler.java 27 Jun 2003 16:45:48 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: CheckTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/CheckTagHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** CheckTagHandler.java 10 Jun 2003 01:56:07 -0000 1.10 --- CheckTagHandler.java 27 Jun 2003 16:45:48 -0000 1.11 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ComboTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ComboTagHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ComboTagHandler.java 10 Jun 2003 01:56:07 -0000 1.10 --- ComboTagHandler.java 27 Jun 2003 16:45:48 -0000 1.11 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ConstantTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ConstantTagHandler.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** ConstantTagHandler.java 24 Jun 2003 05:15:51 -0000 1.14 --- ConstantTagHandler.java 27 Jun 2003 16:45:48 -0000 1.15 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ConstraintsTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ConstraintsTagHandler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ConstraintsTagHandler.java 17 Oct 2002 02:02:33 -0000 1.8 --- ConstraintsTagHandler.java 27 Jun 2003 16:45:49 -0000 1.9 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ConstructorTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ConstructorTagHandler.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ConstructorTagHandler.java 6 Jun 2003 04:09:10 -0000 1.15 --- ConstructorTagHandler.java 27 Jun 2003 16:45:49 -0000 1.16 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ControlTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ControlTagHandler.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ControlTagHandler.java 17 Oct 2002 02:02:33 -0000 1.15 --- ControlTagHandler.java 27 Jun 2003 16:45:49 -0000 1.16 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ControlsTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ControlsTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ControlsTagHandler.java 24 Jun 2003 05:42:10 -0000 1.12 --- ControlsTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: GlueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/GlueTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** GlueTagHandler.java 12 Jun 2003 17:51:46 -0000 1.5 --- GlueTagHandler.java 27 Jun 2003 16:45:49 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: GridbagTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/GridbagTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** GridbagTagHandler.java 17 Oct 2002 02:02:33 -0000 1.7 --- GridbagTagHandler.java 27 Jun 2003 16:45:49 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ItemTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ItemTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ItemTagHandler.java 20 Apr 2003 02:12:27 -0000 1.9 --- ItemTagHandler.java 27 Jun 2003 16:45:49 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: LabelTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/LabelTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** LabelTagHandler.java 10 Jun 2003 01:56:07 -0000 1.11 --- LabelTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: LayoutTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/LayoutTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** LayoutTagHandler.java 17 Oct 2002 02:02:33 -0000 1.12 --- LayoutTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: MenuBarTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/MenuBarTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MenuBarTagHandler.java 14 Jun 2003 02:51:05 -0000 1.12 --- MenuBarTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: MenuTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/MenuTagHandler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** MenuTagHandler.java 24 Jun 2003 05:19:34 -0000 1.8 --- MenuTagHandler.java 27 Jun 2003 16:45:49 -0000 1.9 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: MethodCallTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/MethodCallTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MethodCallTagHandler.java 17 Oct 2002 02:02:33 -0000 1.12 --- MethodCallTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,21 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ package jgb.handlers.swing; --- 1,21 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + package jgb.handlers.swing; Index: NullTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/NullTagHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NullTagHandler.java 25 Jun 2003 20:40:25 -0000 1.1 --- NullTagHandler.java 27 Jun 2003 16:45:49 -0000 1.2 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ObjectTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ObjectTagHandler.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ObjectTagHandler.java 10 Jun 2003 01:56:07 -0000 1.13 --- ObjectTagHandler.java 27 Jun 2003 16:45:49 -0000 1.14 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: PanelTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/PanelTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PanelTagHandler.java 14 Jun 2003 02:52:27 -0000 1.7 --- PanelTagHandler.java 27 Jun 2003 16:45:49 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ParameterTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ParameterTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ParameterTagHandler.java 17 Oct 2002 02:02:33 -0000 1.9 --- ParameterTagHandler.java 27 Jun 2003 16:45:49 -0000 1.10 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: PropertyTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/PropertyTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** PropertyTagHandler.java 17 Oct 2002 02:02:33 -0000 1.12 --- PropertyTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: RadioTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/RadioTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RadioTagHandler.java 10 Jun 2003 02:24:22 -0000 1.9 --- RadioTagHandler.java 27 Jun 2003 16:45:49 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: RefTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/RefTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** RefTagHandler.java 17 Oct 2002 02:02:33 -0000 1.11 --- RefTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: RegisterTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/RegisterTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RegisterTagHandler.java 24 Jun 2003 06:26:33 -0000 1.5 --- RegisterTagHandler.java 27 Jun 2003 16:45:49 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ReturnTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ReturnTagHandler.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ReturnTagHandler.java 17 Oct 2002 02:02:33 -0000 1.6 --- ReturnTagHandler.java 27 Jun 2003 16:45:49 -0000 1.7 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: SeparatorTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/SeparatorTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SeparatorTagHandler.java 12 Jun 2003 17:10:40 -0000 1.4 --- SeparatorTagHandler.java 27 Jun 2003 16:45:49 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: SheetTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/SheetTagHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SheetTagHandler.java 21 Jun 2003 05:38:04 -0000 1.2 --- SheetTagHandler.java 27 Jun 2003 16:45:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: StrutTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/StrutTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** StrutTagHandler.java 12 Jun 2003 18:07:06 -0000 1.5 --- StrutTagHandler.java 27 Jun 2003 16:45:49 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TabTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/TabTagHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TabTagHandler.java 21 Jun 2003 05:38:04 -0000 1.2 --- TabTagHandler.java 27 Jun 2003 16:45:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TextfieldTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/TextfieldTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TextfieldTagHandler.java 10 Jun 2003 01:56:07 -0000 1.11 --- TextfieldTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ValueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ValueTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ValueTagHandler.java 17 Oct 2002 02:02:33 -0000 1.11 --- ValueTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * 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. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library 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 ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write... [truncated message content] |