Skip to content

Commit d911f3c

Browse files
author
zhourenjian
committed
Update comments
1 parent 3874dec commit d911f3c

File tree

15 files changed

+29
-54
lines changed

15 files changed

+29
-54
lines changed

sources/net.sf.j2s.ajax/.classpath

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
<classpathentry kind="src" path="ajaxswt"/>
88
<classpathentry kind="src" path="ajaxrpc"/>
99
<classpathentry kind="var" path="JAVAX_SERVLET"/>
10+
<classpathentry kind="src" path="ajaxdom"/>
1011
<classpathentry kind="output" path="bin"/>
1112
</classpath>

sources/net.sf.j2s.ajax/.j2s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#Java2Script Configuration
2-
#Sun Oct 15 00:35:31 CST 2006
2+
#Sun Mar 18 17:24:48 CST 2007
33
j2s.abandoned.resources.list=bin/net/sf/j2s/ajax/AjaxPlugin.js,bin/net/sf/j2s/ajax/AJAXVariableInitializer.js
44
j2s.compiler.abbreviation=true
55
j2s.compiler.status=enable
66
j2s.compiler.abbreviation.prefix=$_
77
j2s.compiler.mode=debug
8-
j2s.resources.list=../../plugins/net.sf.j2s.lib_1.0.0/j2slib/java.runtime.j2x,bin/net/sf/j2s/ajax/XHRCallbackSWTAdapter.js,bin/net/sf/j2s/ajax/XHRCallbackAdapter.js,bin/net/sf/j2s/ajax/IXHRCallback.js,bin/net/sf/j2s/ajax/HttpRequest.js,bin/net/sf/j2s/ajax/AClass.js,bin/net/sf/j2s/ajax/ASWTClass.js,bin/net/sf/j2s/ajax/ARunnable.js,bin/net/sf/j2s/ajax/Base64.js,bin/net/sf/j2s/ajax/SimpleSerializable.js,bin/net/sf/j2s/ajax/SimpleRPCRunnable.js,bin/net/sf/j2s/ajax/SimpleRPCHttpServlet.js,bin/net/sf/j2s/ajax/SimpleRPCRequest.js,bin/net/sf/j2s/ajax/SimpleRPCSWTRequest.js,bin/net/sf/j2s/ajax/Base64Auth.js
8+
j2s.resources.list=../../plugins/net.sf.j2s.lib_1.0.0/j2slib/java.runtime.j2x,bin/net/sf/j2s/ajax/XHRCallbackSWTAdapter.js,bin/net/sf/j2s/ajax/XHRCallbackAdapter.js,bin/net/sf/j2s/ajax/IXHRCallback.js,bin/net/sf/j2s/ajax/HttpRequest.js,bin/net/sf/j2s/ajax/AClass.js,bin/net/sf/j2s/ajax/ASWTClass.js,bin/net/sf/j2s/ajax/ARunnable.js,bin/net/sf/j2s/ajax/Base64.js,bin/net/sf/j2s/ajax/SimpleSerializable.js,bin/net/sf/j2s/ajax/SimpleRPCRunnable.js,bin/net/sf/j2s/ajax/SimpleRPCHttpServlet.js,bin/net/sf/j2s/ajax/SimpleRPCRequest.js,bin/net/sf/j2s/ajax/SimpleRPCSWTRequest.js,bin/net/sf/j2s/ajax/Base64Auth.js,bin/net/sf/j2s/ajax/XMLDocument.js
99
j2s.compiler.whitespace=false
1010
j2s.output.path=bin
1111
j2s.compiler.linebreak=\r\n

sources/net.sf.j2s.ajax/ajaxcore/net/sf/j2s/ajax/AClass.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.ajax;

sources/net.sf.j2s.ajax/ajaxcore/net/sf/j2s/ajax/ARunnable.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.ajax;

sources/net.sf.j2s.ajax/ajaxcore/net/sf/j2s/ajax/HttpRequest.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.ajax;

sources/net.sf.j2s.ajax/ajaxcore/net/sf/j2s/ajax/IXHRCallback.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.ajax;

sources/net.sf.j2s.ajax/ajaxcore/net/sf/j2s/ajax/XHRCallbackAdapter.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.ajax;

sources/net.sf.j2s.ajax/ajaxrpc/net/sf/j2s/ajax/SimpleRPCHttpServlet.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.ajax;

sources/net.sf.j2s.ajax/ajaxrpc/net/sf/j2s/ajax/SimpleRPCRequest.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.ajax;

sources/net.sf.j2s.ajax/ajaxrpc/net/sf/j2s/ajax/SimpleRPCRunnable.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.ajax;

sources/net.sf.j2s.ajax/ajaxrpc/net/sf/j2s/ajax/SimpleRPCSWTRequest.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.ajax;

sources/net.sf.j2s.ajax/ajaxrpc/net/sf/j2s/ajax/SimpleSerializable.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.ajax;

sources/net.sf.j2s.ajax/ajaxswt/net/sf/j2s/ajax/ASWTClass.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.ajax;

sources/net.sf.j2s.ajax/ajaxswt/net/sf/j2s/ajax/XHRCallbackSWTAdapter.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.ajax;

sources/net.sf.j2s.ajax/src/net/sf/j2s/ajax/AJAXVariableInitializer.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.ajax;

0 commit comments

Comments
 (0)