japi-cvs Mailing List for JAPI (Page 23)
Status: Beta
Brought to you by:
christianhujer
You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(115) |
May
(11) |
Jun
(5) |
Jul
(2) |
Aug
(10) |
Sep
(35) |
Oct
(14) |
Nov
(49) |
Dec
(27) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(57) |
Feb
(1) |
Mar
|
Apr
(2) |
May
(25) |
Jun
(134) |
Jul
(76) |
Aug
(34) |
Sep
(27) |
Oct
(5) |
Nov
|
Dec
(1) |
| 2008 |
Jan
(3) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(63) |
Nov
(30) |
Dec
(43) |
| 2009 |
Jan
(10) |
Feb
(420) |
Mar
(67) |
Apr
(3) |
May
(61) |
Jun
(21) |
Jul
(19) |
Aug
|
Sep
(6) |
Oct
(16) |
Nov
(1) |
Dec
|
| 2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
(7) |
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|
From: <chr...@us...> - 2009-02-15 02:16:53
|
Revision: 860
http://japi.svn.sourceforge.net/japi/?rev=860&view=rev
Author: christianhujer
Date: 2009-02-15 02:16:50 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Fixed Checkstyle issues.
Modified Paths:
--------------
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/AbstractPrimitiveConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/BooleanConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ByteConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/CharConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/DoubleConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/FloatConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/IntegerConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/LongConverterTest.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ShortConverterTest.java
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/AbstractPrimitiveConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/AbstractPrimitiveConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/AbstractPrimitiveConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -39,7 +39,7 @@
private final Class<V> targetClass;
/** The converter testling. */
- protected T converter;
+ private T converter;
/** The class of the converter. */
private final Class<T> converterClass;
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/BooleanConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/BooleanConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/BooleanConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -39,7 +39,7 @@
* @see BooleanConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{boolean.class},
{Boolean.class}
});
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ByteConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ByteConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ByteConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -38,7 +38,7 @@
* @see ByteConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{byte.class},
{Byte.class}
});
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/CharConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/CharConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/CharConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -38,7 +38,7 @@
* @see CharConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{char.class},
{Character.class}
});
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/DoubleConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/DoubleConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/DoubleConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -38,7 +38,7 @@
* @see DoubleConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{double.class},
{Double.class}
});
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/FloatConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/FloatConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/FloatConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -38,7 +38,7 @@
* @see FloatConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{float.class},
{Float.class}
});
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/IntegerConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/IntegerConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/IntegerConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -38,7 +38,7 @@
* @see IntegerConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{int.class},
{Integer.class}
});
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/LongConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/LongConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/LongConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -38,7 +38,7 @@
* @see LongConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{long.class},
{Long.class}
});
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ShortConverterTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ShortConverterTest.java 2009-02-15 02:14:43 UTC (rev 859)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/converter/ShortConverterTest.java 2009-02-15 02:16:50 UTC (rev 860)
@@ -38,7 +38,7 @@
* @see ShortConverterTest(Class)
*/
@Parameterized.Parameters public static Collection getClasses() {
- return Arrays.asList( new Class[][] {
+ return Arrays.asList(new Class[][] {
{short.class},
{Short.class}
});
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-15 02:15:44
|
Revision: 857
http://japi.svn.sourceforge.net/japi/?rev=857&view=rev
Author: christianhujer
Date: 2009-02-15 02:13:38 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Added missing German translations.
Modified Paths:
--------------
libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter_de.properties
Modified: libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter_de.properties
===================================================================
--- libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter_de.properties 2009-02-15 02:13:11 UTC (rev 856)
+++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter_de.properties 2009-02-15 02:13:38 UTC (rev 857)
@@ -24,8 +24,38 @@
java.lang.Boolean.description=G\xFCltige Werte: {0} f\xFCr wahr und {1} f\xFCr falsch.
java.lang.Boolean.true=wahr ja an
java.lang.Boolean.false=falsch nein aus
+boolean.displayName=boolean
+boolean.description=G\xFCltige Werte: {0} f\xFCr wahr und {1} f\xFCr falsch.
+boolean.true=wahr ja an
+boolean.false=falsch nein aus
+java.lang.Short.displayName=integer
+java.lang.Short.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+short.displayName=integer
+short.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+java.lang.Byte.displayName=integer
+java.lang.Byte.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+byte.displayName=integer
+byte.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
java.lang.Integer.displayName=integer
java.lang.Integer.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+int.displayName=integer
+int.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+java.lang.Long.displayName=integer
+java.lang.Long.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+long.displayName=integer
+long.description=Ganzzahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+java.lang.Float.displayName=float
+java.lang.Float.description=Flie\xDFkommazahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+float.displayName=float
+float.description=Flie\xDFkommazahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+java.lang.Double.displayName=float
+java.lang.Double.description=Flie\xDFkommazahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+double.displayName=float
+double.description=Flie\xDFkommazahl (dezimal, 0... oktal, 0x... 0X... #... hexadezimal)
+java.lang.Character.displayName=char
+java.lang.Character.description=Zeichen
+char.displayName=char
+char.description=Zeichen
java.lang.String.displayName=string
java.lang.String.description=Einfacher Text.
java.util.logging.Level.displayName=level
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-15 02:15:36
|
Revision: 859
http://japi.svn.sourceforge.net/japi/?rev=859&view=rev
Author: christianhujer
Date: 2009-02-15 02:14:43 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Fixed typo in class name.
Added Paths:
-----------
libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OutputStreamConverter.java
Removed Paths:
-------------
libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OututStreamConverter.java
Copied: libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OutputStreamConverter.java (from rev 854, libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OututStreamConverter.java)
===================================================================
--- libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OutputStreamConverter.java (rev 0)
+++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OutputStreamConverter.java 2009-02-15 02:14:43 UTC (rev 859)
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2009 Christian Hujer.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package net.sf.japi.io.args.converter;
+
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.OutputStream;
+import java.util.Locale;
+import org.jetbrains.annotations.NotNull;
+
+/**
+ * Converter that converts a String into an InputStream.
+ * @note This converter always behaves the same independently of the {@link Locale}.
+ * @author <a href="mailto:ch...@ri...">Christian Hujer</a>
+ * @deprecated The concept of this class is not yet mature. Please don't use it.
+ */
+@Deprecated public class OutputStreamConverter extends AbstractConverter<OutputStream> {
+
+ /**
+ * Create an InputStreamConverter.
+ */
+ public OutputStreamConverter() {
+ super(OutputStream.class);
+ }
+
+ /** {@inheritDoc} */
+ @SuppressWarnings({"IOResourceOpenedButNotSafelyClosed"})
+ @NotNull public OutputStream convert(@NotNull final Locale locale, @NotNull final String arg) throws FileNotFoundException {
+ return "-".equals(arg) && !new File("-").exists() ? System.out : new FileOutputStream(arg);
+ }
+
+} // class InputStreamConverter
Property changes on: libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OutputStreamConverter.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: svn:eol-style
+ LF
Deleted: libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OututStreamConverter.java
===================================================================
--- libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OututStreamConverter.java 2009-02-15 02:14:08 UTC (rev 858)
+++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/OututStreamConverter.java 2009-02-15 02:14:43 UTC (rev 859)
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2009 Christian Hujer.
- *
- * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package net.sf.japi.io.args.converter;
-
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.FileOutputStream;
-import java.io.OutputStream;
-import java.util.Locale;
-import org.jetbrains.annotations.NotNull;
-
-/**
- * Converter that converts a String into an InputStream.
- * @note This converter always behaves the same independently of the {@link Locale}.
- * @author <a href="mailto:ch...@ri...">Christian Hujer</a>
- * @deprecated The concept of this class is not yet mature. Please don't use it.
- */
-@Deprecated public class OututStreamConverter extends AbstractConverter<OutputStream> {
-
- /**
- * Create an InputStreamConverter.
- */
- public OututStreamConverter() {
- super(OutputStream.class);
- }
-
- /** {@inheritDoc} */
- @SuppressWarnings({"IOResourceOpenedButNotSafelyClosed"})
- @NotNull public OutputStream convert(@NotNull final Locale locale, @NotNull final String arg) throws FileNotFoundException {
- return "-".equals(arg) && !new File("-").exists() ? System.out : new FileOutputStream(arg);
- }
-
-} // class InputStreamConverter
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-15 02:15:33
|
Revision: 855
http://japi.svn.sourceforge.net/japi/?rev=855&view=rev
Author: christianhujer
Date: 2009-02-15 02:12:41 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Changed to public service API. Now requires Java 1.6.
Modified Paths:
--------------
libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/ConverterRegistry.java
Modified: libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/ConverterRegistry.java
===================================================================
--- libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/ConverterRegistry.java 2009-02-14 21:44:15 UTC (rev 854)
+++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/ConverterRegistry.java 2009-02-15 02:12:41 UTC (rev 855)
@@ -22,9 +22,9 @@
import java.util.Iterator;
import java.util.Locale;
import java.util.Map;
+import java.util.ServiceLoader;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
-import sun.misc.Service;
/**
* Registry for Converters.
@@ -54,7 +54,7 @@
private static ConverterRegistry createSingletonInstance() {
final ConverterRegistry instance = new ConverterRegistry();
instance.registerDefaultConverters();
- for (final Iterator<Converter<?>> converters = Service.providers(Converter.class); converters.hasNext();) {
+ for (final Iterator<Converter> converters = ServiceLoader.load(Converter.class).iterator(); converters.hasNext();) {
instance.register(converters.next());
}
return instance;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-15 02:15:33
|
Revision: 858
http://japi.svn.sourceforge.net/japi/?rev=858&view=rev
Author: christianhujer
Date: 2009-02-15 02:14:08 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Minor documentation improvements.
Modified Paths:
--------------
libs/argparser/trunk/src/prj/net/sf/japi/io/args/package-info.java
Modified: libs/argparser/trunk/src/prj/net/sf/japi/io/args/package-info.java
===================================================================
--- libs/argparser/trunk/src/prj/net/sf/japi/io/args/package-info.java 2009-02-15 02:13:38 UTC (rev 857)
+++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/package-info.java 2009-02-15 02:14:08 UTC (rev 858)
@@ -39,12 +39,11 @@
* <p/>
* The special option <code>--</code> will stop argument parsing.
* All strings that follow the <code>--</code>-option are treated as command arguments, not options, even if they start with <code>-</code>.
- * <p/>
+ *
+ * <h3>Usage Pattern</h3>
* The ArgParser library is built upon the JavaBeans concept.
* A command is a JavaBean, the command's options are bean properties.
* The corresponding setter method, usually a setter, needs to be marked as {@link net.sf.japi.io.args.Option}.
- *
- * <h3>Usage Pattern</h3>
* <ul>
* <li>
* Create a class which shall be the command.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-15 02:15:33
|
Revision: 856
http://japi.svn.sourceforge.net/japi/?rev=856&view=rev
Author: christianhujer
Date: 2009-02-15 02:13:11 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Fixed bugs in property descriptions.
Modified Paths:
--------------
libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter.properties
Modified: libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter.properties
===================================================================
--- libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter.properties 2009-02-15 02:12:41 UTC (rev 855)
+++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/converter/Converter.properties 2009-02-15 02:13:11 UTC (rev 856)
@@ -44,12 +44,12 @@
java.lang.Long.description=Integer number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
long.displayName=integer
long.description=Integer number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
-java.lang.Float.displayName=integer
-java.lang.Float.description=Integer number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
+java.lang.Float.displayName=float
+java.lang.Float.description=Float number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
float.displayName=float
float.description=Float number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
-java.lang.Double.displayName=float
-java.lang.Double.description=Float number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
+java.lang.Double.displayName=double
+java.lang.Double.description=Double number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
double.displayName=double
double.description=Double number (decimal, 0... octal, 0x... 0X... #... hexadecimal)
java.lang.Character.displayName=char
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:03:01
|
Revision: 850
http://japi.svn.sourceforge.net/japi/?rev=850&view=rev
Author: christianhujer
Date: 2009-02-14 21:41:59 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/replacer/trunk/build.xml
tools/replacer/trunk/module.properties
tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterable.java
tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterator.java
tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java
tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties
tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/SplitIterator.java
tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Substitution.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationTestCase.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableDefaultTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableLineIteratorTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterablePatternListTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableSplitIteratorTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIteratorTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithSplitIteratorTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithStringSplitTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/ReplacerTest.java
tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java
Modified: tools/replacer/trunk/build.xml
===================================================================
--- tools/replacer/trunk/build.xml 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/build.xml 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,12 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ Replacer is a program for performing an in-place search and replace
- ~ based on regular expressions.
- ~ 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,
@@ -14,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="Replacer" default="buildapp">
Modified: tools/replacer/trunk/module.properties
===================================================================
--- tools/replacer/trunk/module.properties 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/module.properties 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,20 +1,18 @@
#
-# Replacer is a command for performing regular expression substitutions.
-# Copyright (C) 2008 Christian Hujer.
+# Copyright (C) 2009 Christian Hujer
#
-# 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 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 library is distributed in the hope that it will be useful,
+# 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
-# Lesser General Public License for more details.
+# 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 Lesser General Public
-# License along with this library; 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/>.
#
update.focus=none
Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterable.java
===================================================================
--- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterable.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterable.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.replacer;
import java.util.Arrays;
Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterator.java
===================================================================
--- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterator.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/LineIterator.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java
===================================================================
--- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.replacer;
import java.io.BufferedInputStream;
Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties
===================================================================
--- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Replacer.properties 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
setForce=Try to overwrite write-protected files.
setRecursive=Descend into subdirectories recursively.
setBackup=Create backup files.
Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/SplitIterator.java
===================================================================
--- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/SplitIterator.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/SplitIterator.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Substitution.java
===================================================================
--- tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Substitution.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/prj/net/sf/japi/tools/replacer/Substitution.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.replacer;
import org.jetbrains.annotations.NotNull;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationTestCase.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationTestCase.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationTestCase.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableDefaultTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableDefaultTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableDefaultTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableLineIteratorTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableLineIteratorTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableLineIteratorTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterablePatternListTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterablePatternListTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterablePatternListTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableSplitIteratorTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableSplitIteratorTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIterableSplitIteratorTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIteratorTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIteratorTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithLineIteratorTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.Iterator;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithSplitIteratorTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithSplitIteratorTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithSplitIteratorTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.regex.Pattern;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithStringSplitTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithStringSplitTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/LineIterationWithStringSplitTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import java.util.Arrays;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/ReplacerTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/ReplacerTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/ReplacerTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import net.sf.japi.io.args.BasicCommand;
Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java
===================================================================
--- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java 2009-02-14 21:41:08 UTC (rev 849)
+++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java 2009-02-14 21:41:59 UTC (rev 850)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.replacer;
import org.junit.Assert;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:59
|
Revision: 841
http://japi.svn.sourceforge.net/japi/?rev=841&view=rev
Author: christianhujer
Date: 2009-02-14 21:38:08 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/fontbrowser/trunk/build.xml
tools/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/FontBrowser.java
tools/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/action.properties
Modified: tools/fontbrowser/trunk/build.xml
===================================================================
--- tools/fontbrowser/trunk/build.xml 2009-02-14 21:37:56 UTC (rev 840)
+++ tools/fontbrowser/trunk/build.xml 2009-02-14 21:38:08 UTC (rev 841)
@@ -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/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/FontBrowser.java
===================================================================
--- tools/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/FontBrowser.java 2009-02-14 21:37:56 UTC (rev 840)
+++ tools/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/FontBrowser.java 2009-02-14 21:38:08 UTC (rev 841)
@@ -1,10 +1,9 @@
/*
- * FontBrowser is a tool for showing all available fonts in Java.
- * 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.fontbrowser;
Modified: tools/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/action.properties
===================================================================
--- tools/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/action.properties 2009-02-14 21:37:56 UTC (rev 840)
+++ tools/fontbrowser/trunk/src/prj/net/sf/japi/tools/fontbrowser/action.properties 2009-02-14 21:38:08 UTC (rev 841)
@@ -1,10 +1,9 @@
#
-# FontBrowser is a tool for showing all available fonts in Java.
-# 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/>.
#
frame.title=Font Browser
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:57
|
Revision: 851
http://japi.svn.sourceforge.net/japi/?rev=851&view=rev
Author: christianhujer
Date: 2009-02-14 21:42:16 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/scriptEngineLister/trunk/src/prj/net/sf/japi/tools/sel/ScriptEngineLister.java
Modified: tools/scriptEngineLister/trunk/src/prj/net/sf/japi/tools/sel/ScriptEngineLister.java
===================================================================
--- tools/scriptEngineLister/trunk/src/prj/net/sf/japi/tools/sel/ScriptEngineLister.java 2009-02-14 21:41:59 UTC (rev 850)
+++ tools/scriptEngineLister/trunk/src/prj/net/sf/japi/tools/sel/ScriptEngineLister.java 2009-02-14 21:42:16 UTC (rev 851)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.sel;
import java.util.List;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:55
|
Revision: 847
http://japi.svn.sourceforge.net/japi/?rev=847&view=rev
Author: christianhujer
Date: 2009-02-14 21:40:12 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/midiDeviceLister/trunk/src/prj/net/sf/japi/tools/midiDeviceLister/MidiDeviceLister.java
Modified: tools/midiDeviceLister/trunk/src/prj/net/sf/japi/tools/midiDeviceLister/MidiDeviceLister.java
===================================================================
--- tools/midiDeviceLister/trunk/src/prj/net/sf/japi/tools/midiDeviceLister/MidiDeviceLister.java 2009-02-14 21:40:00 UTC (rev 846)
+++ tools/midiDeviceLister/trunk/src/prj/net/sf/japi/tools/midiDeviceLister/MidiDeviceLister.java 2009-02-14 21:40:12 UTC (rev 847)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.midiDeviceLister;
import java.util.List;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:49
|
Revision: 833
http://japi.svn.sourceforge.net/japi/?rev=833&view=rev
Author: christianhujer
Date: 2009-02-14 21:35:20 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
progs/midilearn/trunk/src/prj/net/sf/japi/midilearn/MidiLearn.java
Modified: progs/midilearn/trunk/src/prj/net/sf/japi/midilearn/MidiLearn.java
===================================================================
--- progs/midilearn/trunk/src/prj/net/sf/japi/midilearn/MidiLearn.java 2009-02-14 21:35:07 UTC (rev 832)
+++ progs/midilearn/trunk/src/prj/net/sf/japi/midilearn/MidiLearn.java 2009-02-14 21:35:20 UTC (rev 833)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.midilearn;
import java.awt.event.WindowListener;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:37
|
Revision: 853
http://japi.svn.sourceforge.net/japi/?rev=853&view=rev
Author: christianhujer
Date: 2009-02-14 21:43:53 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/string2bytes/trunk/build.xml
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/AbstractStringCodec.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecListModel.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStep.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStepsListModel.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/EntityCodec.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/IdentityCodec.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/JavaBytesCodec.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/String2Bytes.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/StringCodec.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/URLEncodeCodec.java
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action.properties
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action_de.properties
tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/package-info.java
tools/string2bytes/trunk/src/tst/test/net/sf/japi/string2bytes/CodecStepTest.java
Modified: tools/string2bytes/trunk/build.xml
===================================================================
--- tools/string2bytes/trunk/build.xml 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/build.xml 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ String2Bytes 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="string2bytes" default="compile">
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/AbstractStringCodec.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/AbstractStringCodec.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/AbstractStringCodec.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecListModel.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecListModel.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecListModel.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStep.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStep.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStep.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStepsListModel.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStepsListModel.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecStepsListModel.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/EntityCodec.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/EntityCodec.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/EntityCodec.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/IdentityCodec.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/IdentityCodec.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/IdentityCodec.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/JavaBytesCodec.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/JavaBytesCodec.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/JavaBytesCodec.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/String2Bytes.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/String2Bytes.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/String2Bytes.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/StringCodec.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/StringCodec.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/StringCodec.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/URLEncodeCodec.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/URLEncodeCodec.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/URLEncodeCodec.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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.string2bytes;
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action.properties
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action.properties 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action.properties 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
#
-# String2Bytes 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,
@@ -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/>.
#
# Warning: This file MUST be ISO-8859-1
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action_de.properties
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action_de.properties 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/action_de.properties 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
#
-# String2Bytes 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,
@@ -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/>.
#
usingClipboardForInput.text=Zwischenablage
Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/package-info.java
===================================================================
--- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/package-info.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/package-info.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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/>.
*/
/**
Modified: tools/string2bytes/trunk/src/tst/test/net/sf/japi/string2bytes/CodecStepTest.java
===================================================================
--- tools/string2bytes/trunk/src/tst/test/net/sf/japi/string2bytes/CodecStepTest.java 2009-02-14 21:42:50 UTC (rev 852)
+++ tools/string2bytes/trunk/src/tst/test/net/sf/japi/string2bytes/CodecStepTest.java 2009-02-14 21:43:53 UTC (rev 853)
@@ -1,10 +1,9 @@
/*
- * String2Bytes 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,
@@ -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 test.net.sf.japi.string2bytes;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:35
|
Revision: 837
http://japi.svn.sourceforge.net/japi/?rev=837&view=rev
Author: christianhujer
Date: 2009-02-14 21:36:39 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/archStat/trunk/build.xml
tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java
tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties
tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties
tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml
tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java
tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java
tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java
tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java
tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java
tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java
tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java
Modified: tools/archStat/trunk/build.xml
===================================================================
--- tools/archStat/trunk/build.xml 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/build.xml 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,12 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ Replacer is a program for performing an in-place search and replace
- ~ based on regular expressions.
- ~ 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,
@@ -14,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="ArchStat" default="compile">
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,9 +1,22 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
-// Recursive code statistics.
-// © Copyright 2008 Christian Hujer. All rights reserved.
-// License: GPL (Gnu General Public License) v2 or newer
-
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat.properties 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,2 +1,19 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
readCheckers=Specify an additional configuration file. Can be specified more than once.
setDepth=Set the maximum output depth. Default: No limit.
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/ArchStat_de.properties 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,2 +1,19 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
readCheckers=Eine zus\xE4tzliche Konfiguration lesen. Kann mehrmals angegeben werden.
setDepth=Maximale Ausgabetiefe festlegen. Voreinstellung: unbegrenzt.
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/Checker.xml 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+<!--
+ ~ Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ -->
+
<config>
<filetypes>
<filetype id="CSource" match="^.+\.(c)$" description="C Source Code" />
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/FileStat.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
import java.io.File;
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/LineCheck.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
import java.util.regex.Pattern;
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogEntry.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
import java.io.File;
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/LogSystem.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
import org.jetbrains.annotations.NotNull;
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/Logger.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
import org.jetbrains.annotations.NotNull;
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/MessageType.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
import org.jetbrains.annotations.NotNull;
Modified: tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java
===================================================================
--- tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java 2009-02-14 21:36:10 UTC (rev 836)
+++ tools/archStat/trunk/src/prj/net/sf/japi/archstat/StreamLogger.java 2009-02-14 21:36:39 UTC (rev 837)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.archstat;
import java.util.Formatter;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:31
|
Revision: 854
http://japi.svn.sourceforge.net/japi/?rev=854&view=rev
Author: christianhujer
Date: 2009-02-14 21:44:15 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/todoScanner/trunk/build.xml
tools/todoScanner/trunk/module.properties
tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.java
tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.properties
tools/todoScanner/trunk/src/tst/test/net/sf/japi/tools/todoScanner/TodoScannerTest.java
Modified: tools/todoScanner/trunk/build.xml
===================================================================
--- tools/todoScanner/trunk/build.xml 2009-02-14 21:43:53 UTC (rev 853)
+++ tools/todoScanner/trunk/build.xml 2009-02-14 21:44:15 UTC (rev 854)
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ TodoScanner is a program for finding TODO comments.
- ~ Copyright (C) 2008 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="Replacer" default="buildapp">
Modified: tools/todoScanner/trunk/module.properties
===================================================================
--- tools/todoScanner/trunk/module.properties 2009-02-14 21:43:53 UTC (rev 853)
+++ tools/todoScanner/trunk/module.properties 2009-02-14 21:44:15 UTC (rev 854)
@@ -1,20 +1,18 @@
#
-# Replacer is a command for performing regular expression substitutions.
-# Copyright (C) 2008 Christian Hujer.
+# Copyright (C) 2009 Christian Hujer
#
-# 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 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 library is distributed in the hope that it will be useful,
+# 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
-# Lesser General Public License for more details.
+# 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 Lesser General Public
-# License along with this library; 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/>.
#
update.focus=none
Modified: tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.java
===================================================================
--- tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.java 2009-02-14 21:43:53 UTC (rev 853)
+++ tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.java 2009-02-14 21:44:15 UTC (rev 854)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.todoScanner;
import java.io.BufferedReader;
Modified: tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.properties
===================================================================
--- tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.properties 2009-02-14 21:43:53 UTC (rev 853)
+++ tools/todoScanner/trunk/src/prj/net/sf/japi/tools/todoScanner/TodoScanner.properties 2009-02-14 21:44:15 UTC (rev 854)
@@ -1,2 +1,19 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
clearListOfKeywords=Clears the list of todo keywords.\nUse this if you want to define keywords from scratch.\nThe default list of keywords is: TODO, FIXME, XXX.
addKeyword=Adds a keyword to the list of todo keywords.
Modified: tools/todoScanner/trunk/src/tst/test/net/sf/japi/tools/todoScanner/TodoScannerTest.java
===================================================================
--- tools/todoScanner/trunk/src/tst/test/net/sf/japi/tools/todoScanner/TodoScannerTest.java 2009-02-14 21:43:53 UTC (rev 853)
+++ tools/todoScanner/trunk/src/tst/test/net/sf/japi/tools/todoScanner/TodoScannerTest.java 2009-02-14 21:44:15 UTC (rev 854)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.tools.todoScanner;
import net.sf.japi.tools.todoScanner.TodoScanner;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:28
|
Revision: 824
http://japi.svn.sourceforge.net/japi/?rev=824&view=rev
Author: christianhujer
Date: 2009-02-14 21:30:38 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
libs/util/trunk/build.xml
libs/util/trunk/module.properties
libs/util/trunk/src/prj/net/sf/japi/util/Arrays2.java
libs/util/trunk/src/prj/net/sf/japi/util/Collections2.java
libs/util/trunk/src/prj/net/sf/japi/util/EmptyEnumeration.java
libs/util/trunk/src/prj/net/sf/japi/util/EmptyIterator.java
libs/util/trunk/src/prj/net/sf/japi/util/EndianConverter.java
libs/util/trunk/src/prj/net/sf/japi/util/EnumerationIterator.java
libs/util/trunk/src/prj/net/sf/japi/util/IteratorEnumeration.java
libs/util/trunk/src/prj/net/sf/japi/util/IteratorIterable.java
libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java
libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java
libs/util/trunk/src/prj/net/sf/japi/util/ThrowableHandler.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForArray.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForIterable.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/CollectionFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/Filter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/NotFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForArray.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForIterable.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/AbstractFileFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/EndingFileFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/Factory.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FileFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FilenameFileFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/GlobFileFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/RegexFileFilter.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/file/package-info.java
libs/util/trunk/src/prj/net/sf/japi/util/filter/package-info.java
libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java
libs/util/trunk/src/tst/test/net/sf/japi/util/EnumerationIteratorTest.java
Modified: libs/util/trunk/build.xml
===================================================================
--- libs/util/trunk/build.xml 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/build.xml 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ JAPI libs-util is a library with some additional classes related to java.util.
- ~ Copyright (C) 2007 Christian Hujer.
+ ~ Copyright (C) 2009 Christian Hujer.
~
~ This library is free software; you can redistribute it and/or
~ modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/module.properties
===================================================================
--- libs/util/trunk/module.properties 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/module.properties 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
#
-# JAPI libs-util is a library with some additional classes related to java.util.
-# Copyright (C) 2007 Christian Hujer.
+# Copyright (C) 2009 Christian Hujer.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/Arrays2.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/Arrays2.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/Arrays2.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/Collections2.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/Collections2.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/Collections2.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/EmptyEnumeration.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/EmptyEnumeration.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/EmptyEnumeration.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/EmptyIterator.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/EmptyIterator.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/EmptyIterator.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/EndianConverter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/EndianConverter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/EndianConverter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/EnumerationIterator.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/EnumerationIterator.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/EnumerationIterator.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/IteratorEnumeration.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/IteratorEnumeration.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/IteratorEnumeration.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/IteratorIterable.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/IteratorIterable.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/IteratorIterable.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/ThrowableHandler.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/ThrowableHandler.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/ThrowableHandler.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForArray.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForArray.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForArray.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForIterable.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForIterable.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/AndFilterForIterable.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/CollectionFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/CollectionFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/CollectionFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/Filter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/Filter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/Filter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/NotFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/NotFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/NotFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForArray.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForArray.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForArray.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForIterable.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForIterable.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/OrFilterForIterable.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/AbstractFileFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/AbstractFileFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/AbstractFileFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/EndingFileFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/EndingFileFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/EndingFileFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/Factory.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/Factory.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/Factory.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FileFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FileFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FileFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FilenameFileFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FilenameFileFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/FilenameFileFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/GlobFileFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/GlobFileFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/GlobFileFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/RegexFileFilter.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/RegexFileFilter.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/RegexFileFilter.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/file/package-info.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/file/package-info.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/file/package-info.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/prj/net/sf/japi/util/filter/package-info.java
===================================================================
--- libs/util/trunk/src/prj/net/sf/japi/util/filter/package-info.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/prj/net/sf/japi/util/filter/package-info.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,6 +1,5 @@
/*
- * JAPI libs-util is a library with some additional classes related to java.util.
- * Copyright (C) 2007 Christian Hujer.
+ * Copyright (C) 2009 Christian Hujer.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Modified: libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java
===================================================================
--- libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,21 +1,19 @@
-/* JAPI - (Yet another (hopefully) useful) Java API
+/*
+ * Copyright (C) 2009 Christian Hujer.
*
- * Copyright (C) 2004-2006 Christian Hujer
+ * 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 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
+ * 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
- * General Public License for more details.
+ * Lesser 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 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package test.net.sf.japi.util;
Modified: libs/util/trunk/src/tst/test/net/sf/japi/util/EnumerationIteratorTest.java
===================================================================
--- libs/util/trunk/src/tst/test/net/sf/japi/util/EnumerationIteratorTest.java 2009-02-14 21:29:29 UTC (rev 823)
+++ libs/util/trunk/src/tst/test/net/sf/japi/util/EnumerationIteratorTest.java 2009-02-14 21:30:38 UTC (rev 824)
@@ -1,22 +1,19 @@
/*
- * JAPI - (Yet another (hopefully) useful) Java API
+ * Copyright (C) 2009 Christian Hujer.
*
- * Copyright (C) 2006 Christian Hujer
+ * 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 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
+ * 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
- * General Public License for more details.
+ * Lesser 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 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package test.net.sf.japi.util;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:23
|
Revision: 831
http://japi.svn.sourceforge.net/japi/?rev=831&view=rev
Author: christianhujer
Date: 2009-02-14 21:34:43 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
progs/jirus/trunk/src/prj/net/sf/jirus/Jirus.java
progs/jirus/trunk/src/prj/net/sf/jirus/MyReceiver.java
Modified: progs/jirus/trunk/src/prj/net/sf/jirus/Jirus.java
===================================================================
--- progs/jirus/trunk/src/prj/net/sf/jirus/Jirus.java 2009-02-14 21:34:26 UTC (rev 830)
+++ progs/jirus/trunk/src/prj/net/sf/jirus/Jirus.java 2009-02-14 21:34:43 UTC (rev 831)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.jirus;
import java.util.List;
Modified: progs/jirus/trunk/src/prj/net/sf/jirus/MyReceiver.java
===================================================================
--- progs/jirus/trunk/src/prj/net/sf/jirus/MyReceiver.java 2009-02-14 21:34:26 UTC (rev 830)
+++ progs/jirus/trunk/src/prj/net/sf/jirus/MyReceiver.java 2009-02-14 21:34:43 UTC (rev 831)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.jirus;
import javax.sound.midi.InvalidMidiDataException;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:20
|
Revision: 838
http://japi.svn.sourceforge.net/japi/?rev=838&view=rev
Author: christianhujer
Date: 2009-02-14 21:37:13 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/cstyle/trunk/build.xml
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/AbstractParser.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ByteParser.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.properties
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CharParser.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineParser.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseEvent.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseListener.java
tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/Parser.java
tools/cstyle/trunk/src/tst/test/net/sf/japi/cstyle/CStyleTest.java
Modified: tools/cstyle/trunk/build.xml
===================================================================
--- tools/cstyle/trunk/build.xml 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/build.xml 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ CStyle is a program for checking the style of a C program.
- ~ 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="cstyle" default="compile">
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/AbstractParser.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/AbstractParser.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/AbstractParser.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ByteParser.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ByteParser.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ByteParser.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.properties
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.properties 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CStyle.properties 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
#
-# CStyle is a program that verifies that a C source code adheres to a specific coding convention.
-# 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/>.
#
setEncoding=Specify the encoding to use when reading the sources. Defaults to the underlying platform's default encoding.
\ No newline at end of file
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CharParser.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CharParser.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/CharParser.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineParser.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineParser.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineParser.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseEvent.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseEvent.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseEvent.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.cstyle;
import java.util.EventObject;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseListener.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseListener.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ParseListener.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/Parser.java
===================================================================
--- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/Parser.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/Parser.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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.cstyle;
Modified: tools/cstyle/trunk/src/tst/test/net/sf/japi/cstyle/CStyleTest.java
===================================================================
--- tools/cstyle/trunk/src/tst/test/net/sf/japi/cstyle/CStyleTest.java 2009-02-14 21:36:39 UTC (rev 837)
+++ tools/cstyle/trunk/src/tst/test/net/sf/japi/cstyle/CStyleTest.java 2009-02-14 21:37:13 UTC (rev 838)
@@ -1,10 +1,9 @@
/*
- * CStyle is a program that verifies that a C source code adheres to a specific coding convention.
- * 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 test.net.sf.japi.cstyle;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:18
|
Revision: 844
http://japi.svn.sourceforge.net/japi/?rev=844&view=rev
Author: christianhujer
Date: 2009-02-14 21:39:18 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/jwget/trunk/build.xml
tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.java
tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.properties
tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet_de.properties
Modified: tools/jwget/trunk/build.xml
===================================================================
--- tools/jwget/trunk/build.xml 2009-02-14 21:38:48 UTC (rev 843)
+++ tools/jwget/trunk/build.xml 2009-02-14 21:39:18 UTC (rev 844)
@@ -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/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.java
===================================================================
--- tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.java 2009-02-14 21:38:48 UTC (rev 843)
+++ tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.java 2009-02-14 21:39:18 UTC (rev 844)
@@ -1,10 +1,9 @@
/*
- * JWGet is a simple Java implementation of the unix command wget.
- * 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.jwget;
Modified: tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.properties
===================================================================
--- tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.properties 2009-02-14 21:38:48 UTC (rev 843)
+++ tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet.properties 2009-02-14 21:39:18 UTC (rev 844)
@@ -1,10 +1,9 @@
#
-# JWGet is a simple Java implementation of the unix command wget.
-# 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/>.
#
cannotopen=Can''t open {0}, reason: {1}.
Modified: tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet_de.properties
===================================================================
--- tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet_de.properties 2009-02-14 21:38:48 UTC (rev 843)
+++ tools/jwget/trunk/src/prj/net/sf/japi/jwget/JWGet_de.properties 2009-02-14 21:39:18 UTC (rev 844)
@@ -1,10 +1,9 @@
#
-# JWGet is a simple Java implementation of the unix command wget.
-# 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/>.
#
cannotopen=Kann {0} nicht \xF6ffnen, Grund: {1}.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:15
|
Revision: 830
http://japi.svn.sourceforge.net/japi/?rev=830&view=rev
Author: christianhujer
Date: 2009-02-14 21:34:26 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java
progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/JHexViewApplication.java
progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/action.properties
Modified: progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java
===================================================================
--- progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java 2009-02-14 21:34:13 UTC (rev 829)
+++ progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java 2009-02-14 21:34:26 UTC (rev 830)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.progs.jhexview;
import java.awt.BorderLayout;
Modified: progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/JHexViewApplication.java
===================================================================
--- progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/JHexViewApplication.java 2009-02-14 21:34:13 UTC (rev 829)
+++ progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/JHexViewApplication.java 2009-02-14 21:34:26 UTC (rev 830)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.progs.jhexview;
import net.sf.japi.io.args.ArgParser;
Modified: progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/action.properties
===================================================================
--- progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/action.properties 2009-02-14 21:34:13 UTC (rev 829)
+++ progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/action.properties 2009-02-14 21:34:26 UTC (rev 830)
@@ -1 +1,18 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
application.title=JHexView
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:12
|
Revision: 826
http://japi.svn.sourceforge.net/japi/?rev=826&view=rev
Author: christianhujer
Date: 2009-02-14 21:31:20 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/Main.java
progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/action.properties
Modified: progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/Main.java
===================================================================
--- progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/Main.java 2009-02-14 21:30:59 UTC (rev 825)
+++ progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/Main.java 2009-02-14 21:31:20 UTC (rev 826)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.progs.batcher;
import java.awt.Frame;
Modified: progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/action.properties
===================================================================
--- progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/action.properties 2009-02-14 21:30:59 UTC (rev 825)
+++ progs/batcher/trunk/src/prj/net/sf/japi/progs/batcher/action.properties 2009-02-14 21:31:20 UTC (rev 826)
@@ -1,3 +1,20 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
window.title=Batcher
Main.menubar=file
file.menu=quit
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:03
|
Revision: 848
http://japi.svn.sourceforge.net/japi/?rev=848&view=rev
Author: christianhujer
Date: 2009-02-14 21:40:26 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/midiMonitor/trunk/src/prj/net/sf/japi/tools/midiMonitor/MidiMonitor.java
Modified: tools/midiMonitor/trunk/src/prj/net/sf/japi/tools/midiMonitor/MidiMonitor.java
===================================================================
--- tools/midiMonitor/trunk/src/prj/net/sf/japi/tools/midiMonitor/MidiMonitor.java 2009-02-14 21:40:12 UTC (rev 847)
+++ tools/midiMonitor/trunk/src/prj/net/sf/japi/tools/midiMonitor/MidiMonitor.java 2009-02-14 21:40:26 UTC (rev 848)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.midiMonitor;
import java.util.HashMap;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:02:00
|
Revision: 852
http://japi.svn.sourceforge.net/japi/?rev=852&view=rev
Author: christianhujer
Date: 2009-02-14 21:42:50 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
tools/scriptInterpreter/trunk/action.js
tools/scriptInterpreter/trunk/build.xml
tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.java
tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.properties
tools/scriptInterpreter/trunk/test.js
Modified: tools/scriptInterpreter/trunk/action.js
===================================================================
--- tools/scriptInterpreter/trunk/action.js 2009-02-14 21:42:16 UTC (rev 851)
+++ tools/scriptInterpreter/trunk/action.js 2009-02-14 21:42:50 UTC (rev 852)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
function aa(e) {
print("Test.\n");
}
Modified: tools/scriptInterpreter/trunk/build.xml
===================================================================
--- tools/scriptInterpreter/trunk/build.xml 2009-02-14 21:42:16 UTC (rev 851)
+++ tools/scriptInterpreter/trunk/build.xml 2009-02-14 21:42:50 UTC (rev 852)
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- ~ ScriptInterpreter is a program for interpreting scripts using Java.
- ~ 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="ScriptInterpreter" default="compile">
Modified: tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.java
===================================================================
--- tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.java 2009-02-14 21:42:16 UTC (rev 851)
+++ tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.java 2009-02-14 21:42:50 UTC (rev 852)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.tools.si;
import java.io.InputStreamReader;
Modified: tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.properties
===================================================================
--- tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.properties 2009-02-14 21:42:16 UTC (rev 851)
+++ tools/scriptInterpreter/trunk/src/prj/net/sf/japi/tools/si/ScriptInterpreter.properties 2009-02-14 21:42:50 UTC (rev 852)
@@ -1,2 +1,19 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
setMimeType=Specifies the mime type.
list=Lists the mime types of the available scripting languages.
Modified: tools/scriptInterpreter/trunk/test.js
===================================================================
--- tools/scriptInterpreter/trunk/test.js 2009-02-14 21:42:16 UTC (rev 851)
+++ tools/scriptInterpreter/trunk/test.js 2009-02-14 21:42:50 UTC (rev 852)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
function foo(i) {
print("hello, world " + i + "\n");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-02-14 23:01:59
|
Revision: 829
http://japi.svn.sourceforge.net/japi/?rev=829&view=rev
Author: christianhujer
Date: 2009-02-14 21:34:13 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java
progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/JHexEditApplication.java
progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/action.properties
Modified: progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java
===================================================================
--- progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java 2009-02-14 21:33:49 UTC (rev 828)
+++ progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java 2009-02-14 21:34:13 UTC (rev 829)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.progs.jhexedit;
import java.awt.BorderLayout;
Modified: progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/JHexEditApplication.java
===================================================================
--- progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/JHexEditApplication.java 2009-02-14 21:33:49 UTC (rev 828)
+++ progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/JHexEditApplication.java 2009-02-14 21:34:13 UTC (rev 829)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.progs.jhexedit;
import net.sf.japi.io.args.ArgParser;
Modified: progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/action.properties
===================================================================
--- progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/action.properties 2009-02-14 21:33:49 UTC (rev 828)
+++ progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/action.properties 2009-02-14 21:34:13 UTC (rev 829)
@@ -1 +1,18 @@
+#
+# Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+#
+
application.title=JHexEdit
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
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.
|
|
From: <chr...@us...> - 2009-02-14 23:01:48
|
Revision: 827
http://japi.svn.sourceforge.net/japi/?rev=827&view=rev
Author: christianhujer
Date: 2009-02-14 21:31:54 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java
progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabase.java
progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java
progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java
progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCard.java
progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCardConfiguration.java
Modified: progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java
===================================================================
--- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java 2009-02-14 21:31:20 UTC (rev 826)
+++ progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java 2009-02-14 21:31:54 UTC (rev 827)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.cardlearn;
import java.io.Serializable;
Modified: progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabase.java
===================================================================
--- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabase.java 2009-02-14 21:31:20 UTC (rev 826)
+++ progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabase.java 2009-02-14 21:31:54 UTC (rev 827)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.cardlearn;
/** Provides Access to a Card Database.
Modified: progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java
===================================================================
--- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java 2009-02-14 21:31:20 UTC (rev 826)
+++ progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java 2009-02-14 21:31:54 UTC (rev 827)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.cardlearn;
import java.io.Serializable;
Modified: progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java
===================================================================
--- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java 2009-02-14 21:31:20 UTC (rev 826)
+++ progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java 2009-02-14 21:31:54 UTC (rev 827)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.cardlearn;
import java.awt.Component;
Modified: progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCard.java
===================================================================
--- progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCard.java 2009-02-14 21:31:20 UTC (rev 826)
+++ progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCard.java 2009-02-14 21:31:54 UTC (rev 827)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.cardlearn;
import net.sf.japi.cardlearn.Card;
Modified: progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCardConfiguration.java
===================================================================
--- progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCardConfiguration.java 2009-02-14 21:31:20 UTC (rev 826)
+++ progs/cardlearn/trunk/src/tst/test/net/sf/japi/cardlearn/TestCardConfiguration.java 2009-02-14 21:31:54 UTC (rev 827)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 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 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, see <http://www.gnu.org/licenses/>.
+ */
+
package test.net.sf.japi.cardlearn;
import net.sf.japi.cardlearn.CardDatabaseConfig;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|