[Japi-cvs] SF.net SVN: japi:[849] tools/prefsbrowser/trunk
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2009-02-14 23:01:57
|
Revision: 849
http://japi.svn.sourceforge.net/japi/?rev=849&view=rev
Author: christianhujer
Date: 2009-02-14 21:41:08 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/prefsbrowser/trunk/build.xml
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBranchNode.java
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBrowser.java
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsLeafNode.java
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsRootNode.java
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeNode.java
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeTableModel.java
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action.properties
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action_de.properties
tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/package-info.java
Modified: tools/prefsbrowser/trunk/build.xml
===================================================================
--- tools/prefsbrowser/trunk/build.xml 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/build.xml 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ DirCount is a program for converting Strings into byte arrays.
- ~ Copyright (C) 2007 Christian Hujer
+ ~ Copyright (C) 2009 Christian Hujer
~
- ~ This program is free software; you can redistribute it and/or modify
+ ~ 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
+ ~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
@@ -13,9 +12,8 @@
~ 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.,
- ~ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ ~ You should have received a copy of the GNU General Public License
+ ~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<project name="dircount" default="compile">
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBranchNode.java
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBranchNode.java 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBranchNode.java 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,21 +1,18 @@
-/* JAPI - (Yet another (hopefully) useful) Java API
+/*
+ * Copyright (C) 2009 Christian Hujer
*
- * Copyright (C) 2004-2006 Christian Hujer
+ * 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 3 of the License, or
+ * (at your option) any later version.
*
- * 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 (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.
*
- * 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.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.japi.tools.prefsbrowser;
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBrowser.java
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBrowser.java 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsBrowser.java 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,22 +1,18 @@
/*
- * JAPI - (Yet another (hopefully) useful) Java API
+ * Copyright (C) 2009 Christian Hujer
*
- * Copyright (C) 2006 Christian Hujer
+ * 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 3 of the License, or
+ * (at your option) any later version.
*
- * 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 (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.
*
- * 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.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.japi.tools.prefsbrowser;
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsLeafNode.java
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsLeafNode.java 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsLeafNode.java 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,10 +1,9 @@
/*
- * PrefsBrowser is a tool for browsing preferences in a GUI.
- * Copyright (C) 2007 Christian Hujer
+ * Copyright (C) 2009 Christian Hujer
*
- * This program is free software; you can redistribute it and/or modify
+ * 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
+ * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
@@ -12,9 +11,8 @@
* 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.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.japi.tools.prefsbrowser;
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsRootNode.java
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsRootNode.java 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsRootNode.java 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,21 +1,18 @@
-/* JAPI - (Yet another (hopefully) useful) Java API
+/*
+ * Copyright (C) 2009 Christian Hujer
*
- * Copyright (C) 2004-2006 Christian Hujer
+ * 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 3 of the License, or
+ * (at your option) any later version.
*
- * 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 (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.
*
- * 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.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.japi.tools.prefsbrowser;
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeNode.java
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeNode.java 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeNode.java 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,21 +1,18 @@
-/* JAPI - (Yet another (hopefully) useful) Java API
+/*
+ * Copyright (C) 2009 Christian Hujer
*
- * Copyright (C) 2004-2006 Christian Hujer
+ * 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 3 of the License, or
+ * (at your option) any later version.
*
- * 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 (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.
*
- * 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.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.japi.tools.prefsbrowser;
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeTableModel.java
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeTableModel.java 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/PrefsTreeTableModel.java 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,21 +1,18 @@
-/* JAPI - (Yet another (hopefully) useful) Java API
+/*
+ * Copyright (C) 2009 Christian Hujer
*
- * Copyright (C) 2004-2006 Christian Hujer
+ * 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 3 of the License, or
+ * (at your option) any later version.
*
- * 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 (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.
*
- * 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.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.japi.tools.prefsbrowser;
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action.properties
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action.properties 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action.properties 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,22 +1,18 @@
#
-# JAPI - (Yet another (hopefully) useful) Java API
+# Copyright (C) 2009 Christian Hujer
#
-# Copyright (C) 2006 Christian Hujer
+# 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 3 of the License, or
+# (at your option) any later version.
#
-# 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 (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.
#
-# 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.
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
frame.title=Preferences Browser
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action_de.properties
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action_de.properties 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/action_de.properties 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,22 +1,18 @@
#
-# JAPI - (Yet another (hopefully) useful) Java API
+# Copyright (C) 2009 Christian Hujer
#
-# Copyright (C) 2006 Christian Hujer
+# 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 3 of the License, or
+# (at your option) any later version.
#
-# 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 (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.
#
-# 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.
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
frame.title=Preferences Browser
Modified: tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/package-info.java
===================================================================
--- tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/package-info.java 2009-02-14 21:40:26 UTC (rev 848)
+++ tools/prefsbrowser/trunk/src/prj/net/sf/japi/tools/prefsbrowser/package-info.java 2009-02-14 21:41:08 UTC (rev 849)
@@ -1,10 +1,9 @@
/*
- * PrefsBrowser is a tool for browsing preferences in a GUI.
- * Copyright (C) 2007 Christian Hujer
+ * Copyright (C) 2009 Christian Hujer
*
- * This program is free software; you can redistribute it and/or modify
+ * 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
+ * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
@@ -12,9 +11,8 @@
* 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.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|