From 6a563f89f9bd6362be8a4e8856bdc5edec57ea56 Mon Sep 17 00:00:00 2001 From: mdb Date: Sun, 12 Aug 2001 04:36:58 +0000 Subject: [PATCH] Added license headers, fixed LGPL references. git-svn-id: https://samskivert.googlecode.com/svn/trunk@250 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../java/com/samskivert/viztool/Driver.java | 19 +++++++++++++++- .../src/java/com/samskivert/viztool/Log.java | 19 +++++++++++++++- .../com/samskivert/viztool/Visualizer.java | 19 +++++++++++++++- .../java/com/samskivert/viztool/VizFrame.java | 19 +++++++++++++++- .../java/com/samskivert/viztool/VizPanel.java | 19 +++++++++++++++- .../viztool/enum/ClassEnumerator.java | 19 +++++++++++++++- .../viztool/enum/ComponentEnumerator.java | 19 +++++++++++++++- .../viztool/enum/DirectoryEnumerator.java | 19 +++++++++++++++- .../viztool/enum/EnumerationException.java | 19 +++++++++++++++- .../viztool/enum/FilterEnumerator.java | 19 +++++++++++++++- .../viztool/enum/JarFileEnumerator.java | 19 +++++++++++++++- .../viztool/enum/PackageEnumerator.java | 19 +++++++++++++++- .../viztool/enum/ZipFileEnumerator.java | 19 +++++++++++++++- .../com/samskivert/viztool/enum/package.html | 22 +++++++++---------- .../hierarchy/CascadingChainVisualizer.java | 19 +++++++++++++++- .../samskivert/viztool/hierarchy/Chain.java | 19 +++++++++++++++- .../viztool/hierarchy/ChainGroup.java | 19 +++++++++++++++- .../viztool/hierarchy/ChainUtil.java | 19 +++++++++++++++- .../viztool/hierarchy/ChainVisualizer.java | 19 +++++++++++++++- .../hierarchy/HierarchyVisualizer.java | 19 +++++++++++++++- .../samskivert/viztool/layout/Element.java | 19 +++++++++++++++- .../viztool/layout/ElementLayout.java | 19 +++++++++++++++- .../layout/PackedColumnElementLayout.java | 19 +++++++++++++++- .../samskivert/viztool/layout/package.html | 22 +++++++++---------- .../java/com/samskivert/viztool/overview.html | 22 +++++++++---------- .../java/com/samskivert/viztool/package.html | 22 +++++++++---------- .../com/samskivert/viztool/util/Dumper.java | 19 +++++++++++++++- .../samskivert/viztool/util/FontPicker.java | 19 +++++++++++++++- .../com/samskivert/viztool/util/package.html | 22 +++++++++---------- 29 files changed, 487 insertions(+), 79 deletions(-) diff --git a/projects/viztool/src/java/com/samskivert/viztool/Driver.java b/projects/viztool/src/java/com/samskivert/viztool/Driver.java index 0966127e..9d4d50e9 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/Driver.java +++ b/projects/viztool/src/java/com/samskivert/viztool/Driver.java @@ -1,5 +1,22 @@ // -// $Id: Driver.java,v 1.7 2001/08/12 03:59:21 mdb Exp $ +// $Id: Driver.java,v 1.8 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool; diff --git a/projects/viztool/src/java/com/samskivert/viztool/Log.java b/projects/viztool/src/java/com/samskivert/viztool/Log.java index bed1c516..c669e423 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/Log.java +++ b/projects/viztool/src/java/com/samskivert/viztool/Log.java @@ -1,5 +1,22 @@ // -// $Id: Log.java,v 1.2 2001/06/14 20:56:54 mdb Exp $ +// $Id: Log.java,v 1.3 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool; diff --git a/projects/viztool/src/java/com/samskivert/viztool/Visualizer.java b/projects/viztool/src/java/com/samskivert/viztool/Visualizer.java index d0a779d6..89bcd8e2 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/Visualizer.java +++ b/projects/viztool/src/java/com/samskivert/viztool/Visualizer.java @@ -1,5 +1,22 @@ // -// $Id: Visualizer.java,v 1.2 2001/08/12 03:59:21 mdb Exp $ +// $Id: Visualizer.java,v 1.3 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/VizFrame.java b/projects/viztool/src/java/com/samskivert/viztool/VizFrame.java index f8f4298c..7efbe514 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/VizFrame.java +++ b/projects/viztool/src/java/com/samskivert/viztool/VizFrame.java @@ -1,5 +1,22 @@ // -// $Id: VizFrame.java,v 1.2 2001/08/12 03:59:21 mdb Exp $ +// $Id: VizFrame.java,v 1.3 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool; diff --git a/projects/viztool/src/java/com/samskivert/viztool/VizPanel.java b/projects/viztool/src/java/com/samskivert/viztool/VizPanel.java index 02ac6b06..8ad36deb 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/VizPanel.java +++ b/projects/viztool/src/java/com/samskivert/viztool/VizPanel.java @@ -1,5 +1,22 @@ // -// $Id: VizPanel.java,v 1.2 2001/08/12 03:59:21 mdb Exp $ +// $Id: VizPanel.java,v 1.3 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/ClassEnumerator.java b/projects/viztool/src/java/com/samskivert/viztool/enum/ClassEnumerator.java index e439c2f3..0a33b201 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/ClassEnumerator.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/ClassEnumerator.java @@ -1,5 +1,22 @@ // -// $Id: ClassEnumerator.java,v 1.3 2001/07/13 23:25:13 mdb Exp $ +// $Id: ClassEnumerator.java,v 1.4 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/ComponentEnumerator.java b/projects/viztool/src/java/com/samskivert/viztool/enum/ComponentEnumerator.java index bd36efcb..2db55075 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/ComponentEnumerator.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/ComponentEnumerator.java @@ -1,5 +1,22 @@ // -// $Id: ComponentEnumerator.java,v 1.1 2001/06/14 20:57:15 mdb Exp $ +// $Id: ComponentEnumerator.java,v 1.2 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/DirectoryEnumerator.java b/projects/viztool/src/java/com/samskivert/viztool/enum/DirectoryEnumerator.java index 1de63345..ed2e79fa 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/DirectoryEnumerator.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/DirectoryEnumerator.java @@ -1,5 +1,22 @@ // -// $Id: DirectoryEnumerator.java,v 1.1 2001/06/14 20:57:15 mdb Exp $ +// $Id: DirectoryEnumerator.java,v 1.2 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/EnumerationException.java b/projects/viztool/src/java/com/samskivert/viztool/enum/EnumerationException.java index d246bb4e..d8cae5d6 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/EnumerationException.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/EnumerationException.java @@ -1,5 +1,22 @@ // -// $Id: EnumerationException.java,v 1.1 2001/06/14 20:57:15 mdb Exp $ +// $Id: EnumerationException.java,v 1.2 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/FilterEnumerator.java b/projects/viztool/src/java/com/samskivert/viztool/enum/FilterEnumerator.java index 0b6afb3b..b3a5be1f 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/FilterEnumerator.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/FilterEnumerator.java @@ -1,5 +1,22 @@ // -// $Id: FilterEnumerator.java,v 1.2 2001/07/13 23:25:13 mdb Exp $ +// $Id: FilterEnumerator.java,v 1.3 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/JarFileEnumerator.java b/projects/viztool/src/java/com/samskivert/viztool/enum/JarFileEnumerator.java index d3545e7e..418c9ff4 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/JarFileEnumerator.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/JarFileEnumerator.java @@ -1,5 +1,22 @@ // -// $Id: JarFileEnumerator.java,v 1.1 2001/06/14 20:57:15 mdb Exp $ +// $Id: JarFileEnumerator.java,v 1.2 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/PackageEnumerator.java b/projects/viztool/src/java/com/samskivert/viztool/enum/PackageEnumerator.java index 7aed27c0..e050505f 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/PackageEnumerator.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/PackageEnumerator.java @@ -1,5 +1,22 @@ // -// $Id: PackageEnumerator.java,v 1.2 2001/07/13 23:25:13 mdb Exp $ +// $Id: PackageEnumerator.java,v 1.3 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/ZipFileEnumerator.java b/projects/viztool/src/java/com/samskivert/viztool/enum/ZipFileEnumerator.java index 761163b9..c730d4ed 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/ZipFileEnumerator.java +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/ZipFileEnumerator.java @@ -1,5 +1,22 @@ // -// $Id: ZipFileEnumerator.java,v 1.1 2001/06/14 20:57:15 mdb Exp $ +// $Id: ZipFileEnumerator.java,v 1.2 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.enum; diff --git a/projects/viztool/src/java/com/samskivert/viztool/enum/package.html b/projects/viztool/src/java/com/samskivert/viztool/enum/package.html index 9355e663..4e0406c6 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/enum/package.html +++ b/projects/viztool/src/java/com/samskivert/viztool/enum/package.html @@ -3,24 +3,24 @@ diff --git a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/CascadingChainVisualizer.java b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/CascadingChainVisualizer.java index 291b1788..37da128f 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/CascadingChainVisualizer.java +++ b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/CascadingChainVisualizer.java @@ -1,5 +1,22 @@ // -// $Id: CascadingChainVisualizer.java,v 1.8 2001/07/17 07:18:09 mdb Exp $ +// $Id: CascadingChainVisualizer.java,v 1.9 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/Chain.java b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/Chain.java index de4b3183..7ce91ff2 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/Chain.java +++ b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/Chain.java @@ -1,5 +1,22 @@ // -// $Id: Chain.java,v 1.8 2001/07/24 20:35:46 mdb Exp $ +// $Id: Chain.java,v 1.9 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainGroup.java b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainGroup.java index 8672ba22..34594475 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainGroup.java +++ b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainGroup.java @@ -1,5 +1,22 @@ // -// $Id: ChainGroup.java,v 1.10 2001/08/12 03:59:21 mdb Exp $ +// $Id: ChainGroup.java,v 1.11 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainUtil.java b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainUtil.java index fb7e5462..88632589 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainUtil.java +++ b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainUtil.java @@ -1,5 +1,22 @@ // -// $Id: ChainUtil.java,v 1.5 2001/08/12 02:40:02 mdb Exp $ +// $Id: ChainUtil.java,v 1.6 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainVisualizer.java b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainVisualizer.java index 12d8317a..118aaf51 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainVisualizer.java +++ b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/ChainVisualizer.java @@ -1,5 +1,22 @@ // -// $Id: ChainVisualizer.java,v 1.2 2001/07/17 01:54:19 mdb Exp $ +// $Id: ChainVisualizer.java,v 1.3 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/HierarchyVisualizer.java b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/HierarchyVisualizer.java index 56fb4a96..fe73231e 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/hierarchy/HierarchyVisualizer.java +++ b/projects/viztool/src/java/com/samskivert/viztool/hierarchy/HierarchyVisualizer.java @@ -1,5 +1,22 @@ // -// $Id: HierarchyVisualizer.java,v 1.10 2001/08/12 02:40:44 mdb Exp $ +// $Id: HierarchyVisualizer.java,v 1.11 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/layout/Element.java b/projects/viztool/src/java/com/samskivert/viztool/layout/Element.java index 498ebf31..a7220eff 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/layout/Element.java +++ b/projects/viztool/src/java/com/samskivert/viztool/layout/Element.java @@ -1,5 +1,22 @@ // -// $Id: Element.java,v 1.2 2001/07/17 01:54:19 mdb Exp $ +// $Id: Element.java,v 1.3 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/layout/ElementLayout.java b/projects/viztool/src/java/com/samskivert/viztool/layout/ElementLayout.java index 182defdd..76655624 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/layout/ElementLayout.java +++ b/projects/viztool/src/java/com/samskivert/viztool/layout/ElementLayout.java @@ -1,5 +1,22 @@ // -// $Id: ElementLayout.java,v 1.3 2001/07/24 18:07:35 mdb Exp $ +// $Id: ElementLayout.java,v 1.4 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/layout/PackedColumnElementLayout.java b/projects/viztool/src/java/com/samskivert/viztool/layout/PackedColumnElementLayout.java index 5bfde7dc..9bbbcd23 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/layout/PackedColumnElementLayout.java +++ b/projects/viztool/src/java/com/samskivert/viztool/layout/PackedColumnElementLayout.java @@ -1,5 +1,22 @@ // -// $Id: PackedColumnElementLayout.java,v 1.6 2001/08/12 03:59:21 mdb Exp $ +// $Id: PackedColumnElementLayout.java,v 1.7 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/layout/package.html b/projects/viztool/src/java/com/samskivert/viztool/layout/package.html index 1372f9fe..89364680 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/layout/package.html +++ b/projects/viztool/src/java/com/samskivert/viztool/layout/package.html @@ -3,24 +3,24 @@ diff --git a/projects/viztool/src/java/com/samskivert/viztool/overview.html b/projects/viztool/src/java/com/samskivert/viztool/overview.html index bc76cadf..8aebad1c 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/overview.html +++ b/projects/viztool/src/java/com/samskivert/viztool/overview.html @@ -3,24 +3,24 @@ diff --git a/projects/viztool/src/java/com/samskivert/viztool/package.html b/projects/viztool/src/java/com/samskivert/viztool/package.html index 6de45344..6c173fb6 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/package.html +++ b/projects/viztool/src/java/com/samskivert/viztool/package.html @@ -3,24 +3,24 @@ diff --git a/projects/viztool/src/java/com/samskivert/viztool/util/Dumper.java b/projects/viztool/src/java/com/samskivert/viztool/util/Dumper.java index e64ba3d2..94a7854d 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/util/Dumper.java +++ b/projects/viztool/src/java/com/samskivert/viztool/util/Dumper.java @@ -1,5 +1,22 @@ // -// $Id: Dumper.java,v 1.2 2001/08/12 03:59:21 mdb Exp $ +// $Id: Dumper.java,v 1.3 2001/08/12 04:36:57 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.util; diff --git a/projects/viztool/src/java/com/samskivert/viztool/util/FontPicker.java b/projects/viztool/src/java/com/samskivert/viztool/util/FontPicker.java index ba678be2..75ec0e39 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/util/FontPicker.java +++ b/projects/viztool/src/java/com/samskivert/viztool/util/FontPicker.java @@ -1,5 +1,22 @@ // -// $Id: FontPicker.java,v 1.1 2001/07/17 06:01:08 mdb Exp $ +// $Id: FontPicker.java,v 1.2 2001/08/12 04:36:58 mdb Exp $ +// +// viztool - a tool for visualizing collections of java classes +// Copyright (C) 2001 Michael Bayne +// +// 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.1 of the License, or (at your +// option) 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 package com.samskivert.viztool.viz; diff --git a/projects/viztool/src/java/com/samskivert/viztool/util/package.html b/projects/viztool/src/java/com/samskivert/viztool/util/package.html index e6c6b9cb..fffb042e 100644 --- a/projects/viztool/src/java/com/samskivert/viztool/util/package.html +++ b/projects/viztool/src/java/com/samskivert/viztool/util/package.html @@ -3,24 +3,24 @@