Remove unused import statements and updated some javadoc comments

This commit is contained in:
hns 2003-10-22 16:36:24 +00:00
parent 84416e8a43
commit 0ca20d5842
7 changed files with 18 additions and 45 deletions

View file

@ -17,16 +17,13 @@
package helma.scripting.rhino; package helma.scripting.rhino;
import helma.scripting.rhino.extensions.*; import helma.scripting.rhino.extensions.*;
import helma.framework.*;
import helma.framework.core.*; import helma.framework.core.*;
import helma.objectmodel.*;
import helma.objectmodel.db.*; import helma.objectmodel.db.*;
import helma.util.HtmlEncoder; import helma.util.HtmlEncoder;
import helma.util.MimePart; import helma.util.MimePart;
import helma.util.XmlUtils; import helma.util.XmlUtils;
import org.mozilla.javascript.*; import org.mozilla.javascript.*;
import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.Date; import java.util.Date;
import java.util.Locale; import java.util.Locale;
@ -87,8 +84,8 @@ public class GlobalObject extends ScriptableObject {
/** /**
* *
* *
* @param skin ... * @param skinobj ...
* @param param ... * @param paramobj ...
* *
* @return ... * @return ...
*/ */
@ -116,8 +113,8 @@ public class GlobalObject extends ScriptableObject {
/** /**
* *
* *
* @param skin ... * @param skinobj ...
* @param param ... * @param paramobj ...
* *
* @return ... * @return ...
*/ */
@ -187,7 +184,7 @@ public class GlobalObject extends ScriptableObject {
/** /**
* Get a Helma DB connection specified in db.properties * Get a Helma DB connection specified in db.properties
* *
* @param str the db source name * @param dbsource the db source name
* *
* @return a DatabaseObject for the specified DbConnection * @return a DatabaseObject for the specified DbConnection
*/ */
@ -331,7 +328,7 @@ public class GlobalObject extends ScriptableObject {
/** /**
* *
* *
* @param str ... * @param obj ...
* *
* @return ... * @return ...
*/ */
@ -342,7 +339,7 @@ public class GlobalObject extends ScriptableObject {
/** /**
* *
* *
* @param str ... * @param obj ...
* *
* @return ... * @return ...
*/ */
@ -353,7 +350,7 @@ public class GlobalObject extends ScriptableObject {
/** /**
* *
* *
* @param str ... * @param obj ...
* *
* @return ... * @return ...
*/ */
@ -364,7 +361,7 @@ public class GlobalObject extends ScriptableObject {
/** /**
* *
* *
* @param str ... * @param obj ...
* *
* @return ... * @return ...
*/ */
@ -375,7 +372,7 @@ public class GlobalObject extends ScriptableObject {
/** /**
* *
* *
* @param str ... * @param obj ...
* *
* @return ... * @return ...
*/ */
@ -404,8 +401,6 @@ public class GlobalObject extends ScriptableObject {
* *
* *
* @param str ... * @param str ...
*
* @return ...
*/ */
public void write(String str) { public void write(String str) {
System.out.print(str); System.out.print(str);
@ -415,8 +410,6 @@ public class GlobalObject extends ScriptableObject {
* *
* *
* @param str ... * @param str ...
*
* @return ...
*/ */
public void writeln(String str) { public void writeln(String str) {
System.out.println(str); System.out.println(str);

View file

@ -16,15 +16,9 @@
package helma.scripting.rhino; package helma.scripting.rhino;
import helma.framework.*;
import helma.framework.core.*; import helma.framework.core.*;
import helma.objectmodel.*;
import helma.objectmodel.db.*;
import org.mozilla.javascript.*; import org.mozilla.javascript.*;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Date;
import java.util.Enumeration;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
@ -69,8 +63,8 @@ public class JavaObject extends NativeJavaObject {
/** /**
* *
* *
* @param skin ... * @param skinobj ...
* @param param ... * @param paramobj ...
* *
* @return ... * @return ...
*/ */
@ -98,8 +92,8 @@ public class JavaObject extends NativeJavaObject {
/** /**
* *
* *
* @param skin ... * @param skinobj ...
* @param param ... * @param paramobj ...
* *
* @return ... * @return ...
*/ */

View file

@ -118,7 +118,7 @@ public class MapWrapper extends ScriptableObject {
/** /**
* *
* *
* @param name ... * @param idx ...
* @param start ... * @param start ...
* @param value ... * @param value ...
*/ */
@ -136,7 +136,7 @@ public class MapWrapper extends ScriptableObject {
/** /**
* *
* *
* @param name ... * @param idx ...
* @param start ... * @param start ...
* *
* @return ... * @return ...
@ -158,7 +158,7 @@ public class MapWrapper extends ScriptableObject {
/** /**
* *
* *
* @param name ... * @param idx ...
* @param start ... * @param start ...
* *
* @return ... * @return ...
@ -170,7 +170,7 @@ public class MapWrapper extends ScriptableObject {
/** /**
* *
* *
* @param name ... * @param idx ...
*/ */
public void delete(int idx) { public void delete(int idx) {
if (map != null) { if (map != null) {

View file

@ -18,7 +18,6 @@ package helma.scripting.rhino;
import helma.framework.core.RequestPath; import helma.framework.core.RequestPath;
import org.mozilla.javascript.*; import org.mozilla.javascript.*;
import java.lang.reflect.*;
/** /**
* This class wraps around instances of helma.framework.core.RequestPath and * This class wraps around instances of helma.framework.core.RequestPath and

View file

@ -18,14 +18,6 @@ package helma.scripting.rhino;
import helma.scripting.*; import helma.scripting.*;
// import java.util.Vector;
// import java.util.Iterator;
import java.io.*;
// import helma.framework.*;
// import helma.framework.core.*;
// import helma.util.Updatable;
/** /**
* An class that updates fesi interpreters with actionfiles and templates. * An class that updates fesi interpreters with actionfiles and templates.
*/ */

View file

@ -27,11 +27,8 @@ import helma.objectmodel.db.DbMapping;
import helma.objectmodel.db.Relation; import helma.objectmodel.db.Relation;
import helma.scripting.*; import helma.scripting.*;
import helma.scripting.rhino.debug.Tracer; import helma.scripting.rhino.debug.Tracer;
import helma.util.CacheMap;
import helma.util.Updatable;
import org.mozilla.javascript.*; import org.mozilla.javascript.*;
import java.io.*;
import java.util.*; import java.util.*;
/** /**

View file

@ -16,8 +16,6 @@
package helma.scripting.rhino; package helma.scripting.rhino;
import java.io.Serializable;
/** /**
* A helper class to serve as Map key for two strings * A helper class to serve as Map key for two strings
*/ */