Skip to content

Commit 480b318

Browse files
author
zhourenjian
committed
Update comments
1 parent 15e87da commit 480b318

13 files changed

+46
-65
lines changed

tests/net.sf.j2s.test.ajax/.j2s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Java2Script Configuration
2-
#Fri Oct 13 02:11:44 CST 2006
3-
j2s.resources.list=../../plugins/net.sf.j2s.lib_1.0.0/j2slib/java.runtime.j2x,../../plugins/net.sf.j2s.lib_1.0.0/j2slib/junit.j2x,bin/net/sf/j2s/ajax/test/LoadingRSS.js,bin/net/sf/j2s/ajax/test/TestSerialize.js,bin/net/sf/j2s/ajax/test/SerializeTest.js,bin/net/sf/j2s/ajax/test/DeserializeTest.js,bin/net/sf/j2s/ajax/test/ArraySerializeTest.js,bin/net/sf/j2s/ajax/test/ArrayDeserializeTest.js,bin/net/sf/j2s/ajax/test/BigTest.js,bin/net/sf/j2s/test/ajax/ArrayDeserializeTest.js,bin/net/sf/j2s/test/ajax/ArraySerializeTest.js,bin/net/sf/j2s/test/ajax/BigTest.js,bin/net/sf/j2s/test/ajax/DeserializeTest.js,bin/net/sf/j2s/test/ajax/LoadingRSS.js,bin/net/sf/j2s/test/ajax/SerializeTest.js,bin/net/sf/j2s/test/ajax/TestSerialize.js,bin/net/sf/j2s/test/lz77js/LZ77ServletRunnable.js,bin/net/sf/j2s/test/lz77js/client/LZ77JS.js,bin/net/sf/j2s/test/lz77js/server/LZ77JSServlet.js,bin/com/ognize/lz77js/LZ77JSSimpleRPCRunnable.js,bin/com/ognize/lz77js/servlet/LZ77JSServlet.js,bin/com/ognize/lz77js/ui/LZ77JS.js
2+
#Sun Mar 18 18:51:22 CST 2007
3+
j2s.resources.list=../../plugins/net.sf.j2s.lib_1.0.0/j2slib/java.runtime.j2x,../../plugins/net.sf.j2s.lib_1.0.0/j2slib/junit.j2x,bin/net/sf/j2s/ajax/test/LoadingRSS.js,bin/net/sf/j2s/ajax/test/TestSerialize.js,bin/net/sf/j2s/ajax/test/SerializeTest.js,bin/net/sf/j2s/ajax/test/DeserializeTest.js,bin/net/sf/j2s/ajax/test/ArraySerializeTest.js,bin/net/sf/j2s/ajax/test/ArrayDeserializeTest.js,bin/net/sf/j2s/ajax/test/BigTest.js,bin/net/sf/j2s/test/ajax/ArrayDeserializeTest.js,bin/net/sf/j2s/test/ajax/ArraySerializeTest.js,bin/net/sf/j2s/test/ajax/BigTest.js,bin/net/sf/j2s/test/ajax/DeserializeTest.js,bin/net/sf/j2s/test/ajax/LoadingRSS.js,bin/net/sf/j2s/test/ajax/SerializeTest.js,bin/net/sf/j2s/test/ajax/TestSerialize.js,bin/net/sf/j2s/test/lz77js/LZ77ServletRunnable.js,bin/net/sf/j2s/test/lz77js/client/LZ77JS.js,bin/net/sf/j2s/test/lz77js/server/LZ77JSServlet.js,bin/com/ognize/lz77js/LZ77JSSimpleRPCRunnable.js,bin/com/ognize/lz77js/servlet/LZ77JSServlet.js,bin/com/ognize/lz77js/ui/LZ77JS.js,bin/net/sf/j2s/test/ajax/Base64UserPasswordTest.js,bin/net/sf/j2s/test/ajax/HTMLChineseSimpleRPCTest.js,bin/net/sf/j2s/test/ajax/ZZRunnable.js,bin/net/sf/j2s/test/ajax/ZZRunnableTest.js
44
j2s.output.path=bin
55
j2s.abandoned.resources.list=
66
j2s.compiler.status=enable

tests/net.sf.j2s.test.ajax/src/com/ognize/lz77js/LZ77JSSimpleRPCRunnable.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package com.ognize.lz77js;
1513

1614
import net.sf.j2s.ajax.SimpleRPCRunnable;
1715

1816
/**
19-
* @author josson smith
17+
* @author zhou renjian
2018
*
2119
* 2006-10-10
2220
*/

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/ArrayDeserializeTest.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;
@@ -17,7 +15,7 @@
1715
import net.sf.j2s.ajax.SimpleSerializable;
1816

1917
/**
20-
* @author josson smith
18+
* @author zhou renjian
2119
*
2220
* 2006-10-11
2321
*/

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/ArraySerializeTest.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;
@@ -17,7 +15,7 @@
1715
import net.sf.j2s.ajax.SimpleSerializable;
1816

1917
/**
20-
* @author josson smith
18+
* @author zhou renjian
2119
*
2220
* 2006-10-11
2321
*/

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/Base64UserPasswordTest.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;
@@ -18,7 +16,7 @@
1816

1917

2018
/**
21-
* @author josson smith
19+
* @author zhou renjian
2220
*
2321
* 2006-2-11
2422
*/

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/BigTest.java

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;
@@ -17,7 +15,7 @@
1715
import junit.framework.TestCase;
1816

1917
/**
20-
* @author josson smith
18+
* @author zhou renjian
2119
*
2220
* 2006-10-13
2321
*/
@@ -28,16 +26,14 @@ String trim(String s) {
2826
public void testJavaSource() {
2927
String tmpStr = "";
3028
tmpStr += "/*******************************************************************************\r\n";
31-
tmpStr += " * Java2Script Pacemaker (http://j2s.sourceforge.net)\r\n";
32-
tmpStr += " *\r\n";
33-
tmpStr += " * Copyright (c) 2006 ognize.com and others.\r\n";
29+
tmpStr += " * Copyright (c) 2007 java2script and others.\r\n";
3430
tmpStr += " * All rights reserved. This program and the accompanying materials\r\n";
3531
tmpStr += " * are made available under the terms of the Eclipse Public License v1.0\r\n";
3632
tmpStr += " * which accompanies this distribution, and is available at\r\n";
3733
tmpStr += " * http://www.eclipse.org/legal/epl-v10.html\r\n";
3834
tmpStr += " *\r\n";
3935
tmpStr += " * Contributors:\r\n";
40-
tmpStr += " * ognize.com - initial API and implementation\r\n";
36+
tmpStr += " * Zhou Renjian - initial API and implementation\r\n";
4137
tmpStr += " *******************************************************************************/\r\n";
4238

4339
tmpStr += "package net.sf.j2s.ajax.test;\r\n";
@@ -46,7 +42,7 @@ public void testJavaSource() {
4642
tmpStr += "import net.sf.j2s.ajax.SimpleSerializable;\r\n";
4743

4844
tmpStr += "/**\r\n";
49-
tmpStr += " * @author josson smith\r\n";
45+
tmpStr += " * @author zhou renjian\r\n";
5046
tmpStr += " *\r\n";
5147
tmpStr += " * 2006-10-11\r\n";
5248
tmpStr += " */\r\n";

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/DeserializeTest.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;
@@ -17,7 +15,7 @@
1715
import net.sf.j2s.ajax.SimpleSerializable;
1816

1917
/**
20-
* @author josson smith
18+
* @author zhou renjian
2119
*
2220
* 2006-10-11
2321
*/

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/HTMLChineseSimpleRPCTest.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/LoadingRSS.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;
@@ -20,7 +18,7 @@
2018

2119

2220
/**
23-
* @author josson smith
21+
* @author zhou renjian
2422
*
2523
* 2006-2-11
2624
*/

tests/net.sf.j2s.test.ajax/src/net/sf/j2s/test/ajax/SerializeTest.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
/*******************************************************************************
2-
* Java2Script Pacemaker (http://j2s.sourceforge.net)
3-
*
4-
* Copyright (c) 2006 ognize.com and others.
2+
* Copyright (c) 2007 java2script.org and others.
53
* All rights reserved. This program and the accompanying materials
64
* are made available under the terms of the Eclipse Public License v1.0
75
* which accompanies this distribution, and is available at
86
* http://www.eclipse.org/legal/epl-v10.html
97
*
108
* Contributors:
11-
* ognize.com - initial API and implementation
9+
* Zhou Renjian - initial API and implementation
1210
*******************************************************************************/
1311

1412
package net.sf.j2s.test.ajax;
@@ -17,7 +15,7 @@
1715
import net.sf.j2s.ajax.SimpleSerializable;
1816

1917
/**
20-
* @author josson smith
18+
* @author zhou renjian
2119
*
2220
* 2006-10-11
2321
*/

0 commit comments

Comments
 (0)