/hg/rhino-tests: Added licence and JavaDoc to TestClass.java, fi...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Jul 22 07:24:03 PDT 2011
changeset 0ba6349ef301 in /hg/rhino-tests
details: http://icedtea.classpath.org/hg/rhino-tests?cmd=changeset;node=0ba6349ef301
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Jul 22 16:25:36 2011 +0200
Added licence and JavaDoc to TestClass.java, fixed address in
AUTHORS, fixed order of entries in ChangeLog.
diffstat:
AUTHORS | 2 +-
ChangeLog | 17 ++++-
src/org/RhinoTests/TestClasses/TestClass.java | 77 ++++++++++++++++++++++++++-
3 files changed, 88 insertions(+), 8 deletions(-)
diffs (183 lines):
diff -r 9622545698bb -r 0ba6349ef301 AUTHORS
--- a/AUTHORS Fri Jul 15 10:45:01 2011 +0200
+++ b/AUTHORS Fri Jul 22 16:25:36 2011 +0200
@@ -1,6 +1,6 @@
The following people contributed code and patches to Rhino Tests project:
-Pavel Tisnovsky (ptisnovs at redhat.com)
+Pavel Tisnovsky <ptisnovs at redhat.com>
The following people provided feedback and bug reports:
diff -r 9622545698bb -r 0ba6349ef301 ChangeLog
--- a/ChangeLog Fri Jul 15 10:45:01 2011 +0200
+++ b/ChangeLog Fri Jul 22 16:25:36 2011 +0200
@@ -1,3 +1,15 @@
+2011-07-22 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * ChangeLog: fixed order of changelog entries
+ * AUTHORS: fixed mail addresses
+ * src/org/RhinoTests/TestClasses/TestClass.java:
+ Added licence and JavaDoc.
+
+2011-07-15 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * README: added basic info about this application
+ * Makefile: created
+
2011-07-14 Pavel Tisnovsky <ptisnovs at redhat.com>
* AUTHORS: created
@@ -6,8 +18,3 @@
* README: created
* ChangeLog: created
-2011-07-15 Pavel Tisnovsky <ptisnovs at redhat.com>
-
- * README: added basic info about this application
- * Makefile: created
-
diff -r 9622545698bb -r 0ba6349ef301 src/org/RhinoTests/TestClasses/TestClass.java
--- a/src/org/RhinoTests/TestClasses/TestClass.java Fri Jul 15 10:45:01 2011 +0200
+++ b/src/org/RhinoTests/TestClasses/TestClass.java Fri Jul 22 16:25:36 2011 +0200
@@ -1,3 +1,43 @@
+/*
+ Rhino test framework
+
+ Copyright (C) 2011 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea 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, or (at your option)
+any later version.
+
+IcedTea 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 IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
package org.RhinoTests.TestClasses;
import java.awt.Color;
@@ -6,57 +46,89 @@
/**
- * Test class used by various Rhino tests.
- * TODO: javadoc
+ * Test class used (called) by various Rhino tests.
*/
public class TestClass {
+ /**
+ * Private value which can accessed throught getter and setter.
+ */
private String value;
+ /**
+ * Set the new value of object attribute.
+ */
public void setValue(String value) {
System.out.println("\tTestClass setter called");
this.value = value;
}
+ /**
+ * Get current value of object attribute.
+ */
public String getValue() {
System.out.println("\tTestClass getter called");
return this.value;
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(Object o) {
System.out.println("\toverloaded(object) called with parameter "+ o);
return "Object";
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(String o) {
System.out.println("\toverloaded(string) called with parameter " + o);
return "String";
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(int o) {
System.out.println("\toverloaded(int) called with parameter " + o);
return "Integer";
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(double o) {
System.out.println("\toverloaded(double) called with parameter " + o);
return "Double";
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(Date o) {
System.out.println("\toverloaded(Date) called with parameter " + o);
return "Date";
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(Color o) {
System.out.println("\toverloaded(Color) called with parameter " + o);
return "Color";
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(boolean o) {
System.out.println("\toverloaded(boolean) called with parameter " + o);
return "boolean";
}
+ /**
+ * Public method which is overloaded (to test Rhino reflection properties)
+ */
public String overloaded(Boolean o) {
System.out.println("\toverloaded(boolean) called with parameter " + o);
return "Boolean";
@@ -67,3 +139,4 @@
return "This is TestClass";
}
}
+
More information about the distro-pkg-dev
mailing list