Skip to content

Commit 0e1f0ad

Browse files
committed
repackaging in the source, switched licence to asf licence
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/trunks-sandbox/csv@357302 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4b5faab commit 0e1f0ad

6 files changed

Lines changed: 88 additions & 64 deletions

File tree

src/java/org/apache/commons/csv/CSVParser.java

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
/*
2-
* The copyright to the computer program(s) herein is the property of
3-
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
4-
* only with the written permission of Netcetera AG or in accordance
5-
* with the terms and conditions stipulated in the agreement/contract
6-
* under which the program(s) have been supplied.
7-
*
8-
* @(#) $Id: CSVParser.java,v 1.10 2004/09/30 13:37:10 hagger Exp $
2+
* Copyright 2005 The Apache Software Foundation.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
915
*/
10-
package ch.netcetera.wake.core.format.csv;
16+
package org.apache.commons.csv;
1117

1218
import java.io.IOException;
1319
import java.io.InputStream;
@@ -760,4 +766,4 @@ private boolean isEndOfLine(int c) throws IOException {
760766
private boolean isEndOfFile(int c) {
761767
return c == ExtendedBufferedReader.END_OF_STREAM;
762768
}
763-
}
769+
}

src/java/org/apache/commons/csv/CSVPrinter.java

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
/*
2-
* Copyright (C) 2002-2004 by Netcetera AG.
3-
* All rights reserved.
4-
*
5-
* The copyright to the computer program(s) herein is the property of
6-
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
7-
* only with the written permission of Netcetera AG or in accordance
8-
* with the terms and conditions stipulated in the agreement/contract
9-
* under which the program(s) have been supplied.
10-
*
11-
* @(#) $Id: CSVPrinter.java,v 1.4 2004/08/10 12:35:27 rgrunder Exp $
2+
* Copyright 2005 The Apache Software Foundation.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
13-
14-
package ch.netcetera.wake.core.format.csv;
16+
package org.apache.commons.csv;
1517

1618
import java.io.OutputStream;
1719
import java.io.PrintWriter;

src/java/org/apache/commons/csv/ExtendedBufferedReader.java

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
/*
2-
* playground
3-
*
4-
* Copyright (C) 2004 by Netcetera AG.
5-
* All rights reserved.
6-
*
7-
* The copyright to the computer program(s) herein is the property of
8-
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
9-
* only with the written permission of Netcetera AG or in accordance
10-
* with the terms and conditions stipulated in the agreement/contract
11-
* under which the program(s) have been supplied.
12-
*
13-
* @(#) $Id: ExtendedBufferedReader.java,v 1.3 2004/09/30 13:37:10 hagger Exp $
14-
*/
15-
package ch.netcetera.wake.core.format.csv;
2+
* Copyright 2005 The Apache Software Foundation.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.apache.commons.csv;
1617

1718
import java.io.BufferedReader;
1819
import java.io.IOException;

src/test/org/apache/commons/csv/CSVParserTest.java

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
/*
2-
* The copyright to the computer program(s) herein is the property of
3-
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
4-
* only with the written permission of Netcetera AG or in accordance
5-
* with the terms and conditions stipulated in the agreement/contract
6-
* under which the program(s) have been supplied.
7-
*
8-
* @(#) $Id: CSVParserTest.java,v 1.5 2004/05/18 09:41:26 uhardegg Exp $
9-
*/
10-
package ch.netcetera.wake.core.format.csv;
2+
* Copyright 2005 The Apache Software Foundation.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.apache.commons.csv;
1117

1218
import java.io.IOException;
1319
import java.io.Reader;

src/test/org/apache/commons/csv/CSVPrinterTest.java

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
/*
2-
* The copyright to the computer program(s) herein is the property of
3-
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
4-
* only with the written permission of Netcetera AG or in accordance
5-
* with the terms and conditions stipulated in the agreement/contract
6-
* under which the program(s) have been supplied.
7-
*
8-
* @(#) $Id: CSVPrinterTest.java,v 1.1 2004/08/10 12:38:45 rgrunder Exp $
9-
*/
10-
package ch.netcetera.wake.core.format.csv;
2+
* Copyright 2005 The Apache Software Foundation.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.apache.commons.csv;
1117

1218
import java.io.StringWriter;
1319
import junit.framework.Test;

src/test/org/apache/commons/csv/ExtendedBufferedReaderTest.java

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
/*
2-
* Copyright (C) 2004 by Netcetera AG.
3-
* All rights reserved.
4-
*
5-
* The copyright to the computer program(s) herein is the property of
6-
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
7-
* only with the written permission of Netcetera AG or in accordance
8-
* with the terms and conditions stipulated in the agreement/contract
9-
* under which the program(s) have been supplied.
10-
*
11-
* @(#) $Id: ExtendedBufferedReaderTest.java,v 1.2 2004/10/20 11:14:11 rgrunder Exp $
2+
* Copyright 2005 The Apache Software Foundation.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
13-
package ch.netcetera.wake.core.format.csv;
16+
package org.apache.commons.csv;
1417

1518
import java.io.StringReader;
1619
import java.util.Arrays;

0 commit comments

Comments
 (0)