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
This commit is contained in:
parent
4b5faabefd
commit
0e1f0adb71
|
@ -1,13 +1,19 @@
|
|||
/*
|
||||
* The copyright to the computer program(s) herein is the property of
|
||||
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
|
||||
* only with the written permission of Netcetera AG or in accordance
|
||||
* with the terms and conditions stipulated in the agreement/contract
|
||||
* under which the program(s) have been supplied.
|
||||
*
|
||||
* @(#) $Id: CSVParser.java,v 1.10 2004/09/30 13:37:10 hagger Exp $
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ch.netcetera.wake.core.format.csv;
|
||||
package org.apache.commons.csv;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
|
@ -760,4 +766,4 @@ public class CSVParser {
|
|||
private boolean isEndOfFile(int c) {
|
||||
return c == ExtendedBufferedReader.END_OF_STREAM;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
/*
|
||||
* Copyright (C) 2002-2004 by Netcetera AG.
|
||||
* All rights reserved.
|
||||
*
|
||||
* The copyright to the computer program(s) herein is the property of
|
||||
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
|
||||
* only with the written permission of Netcetera AG or in accordance
|
||||
* with the terms and conditions stipulated in the agreement/contract
|
||||
* under which the program(s) have been supplied.
|
||||
*
|
||||
* @(#) $Id: CSVPrinter.java,v 1.4 2004/08/10 12:35:27 rgrunder Exp $
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package ch.netcetera.wake.core.format.csv;
|
||||
package org.apache.commons.csv;
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintWriter;
|
||||
|
|
|
@ -1,18 +1,19 @@
|
|||
/*
|
||||
* playground
|
||||
*
|
||||
* Copyright (C) 2004 by Netcetera AG.
|
||||
* All rights reserved.
|
||||
*
|
||||
* The copyright to the computer program(s) herein is the property of
|
||||
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
|
||||
* only with the written permission of Netcetera AG or in accordance
|
||||
* with the terms and conditions stipulated in the agreement/contract
|
||||
* under which the program(s) have been supplied.
|
||||
*
|
||||
* @(#) $Id: ExtendedBufferedReader.java,v 1.3 2004/09/30 13:37:10 hagger Exp $
|
||||
*/
|
||||
package ch.netcetera.wake.core.format.csv;
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.csv;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
|
|
|
@ -1,13 +1,19 @@
|
|||
/*
|
||||
* The copyright to the computer program(s) herein is the property of
|
||||
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
|
||||
* only with the written permission of Netcetera AG or in accordance
|
||||
* with the terms and conditions stipulated in the agreement/contract
|
||||
* under which the program(s) have been supplied.
|
||||
*
|
||||
* @(#) $Id: CSVParserTest.java,v 1.5 2004/05/18 09:41:26 uhardegg Exp $
|
||||
*/
|
||||
package ch.netcetera.wake.core.format.csv;
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.csv;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.Reader;
|
||||
|
|
|
@ -1,13 +1,19 @@
|
|||
/*
|
||||
* The copyright to the computer program(s) herein is the property of
|
||||
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
|
||||
* only with the written permission of Netcetera AG or in accordance
|
||||
* with the terms and conditions stipulated in the agreement/contract
|
||||
* under which the program(s) have been supplied.
|
||||
*
|
||||
* @(#) $Id: CSVPrinterTest.java,v 1.1 2004/08/10 12:38:45 rgrunder Exp $
|
||||
*/
|
||||
package ch.netcetera.wake.core.format.csv;
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.commons.csv;
|
||||
|
||||
import java.io.StringWriter;
|
||||
import junit.framework.Test;
|
||||
|
|
|
@ -1,16 +1,19 @@
|
|||
/*
|
||||
* Copyright (C) 2004 by Netcetera AG.
|
||||
* All rights reserved.
|
||||
*
|
||||
* The copyright to the computer program(s) herein is the property of
|
||||
* Netcetera AG, Switzerland. The program(s) may be used and/or copied
|
||||
* only with the written permission of Netcetera AG or in accordance
|
||||
* with the terms and conditions stipulated in the agreement/contract
|
||||
* under which the program(s) have been supplied.
|
||||
*
|
||||
* @(#) $Id: ExtendedBufferedReaderTest.java,v 1.2 2004/10/20 11:14:11 rgrunder Exp $
|
||||
* Copyright 2005 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ch.netcetera.wake.core.format.csv;
|
||||
package org.apache.commons.csv;
|
||||
|
||||
import java.io.StringReader;
|
||||
import java.util.Arrays;
|
||||
|
|
Loading…
Reference in New Issue