added default values to fields

This commit is contained in:
stefanp 2002-03-07 13:58:07 +00:00
parent d165ce1c28
commit 4a373e8a09

View file

@ -23,15 +23,15 @@ public class DocRun {
/** /**
* Description of the Field * Description of the Field
*/ */
public static String actionExtension; public static String actionExtension = ".hac";
/** /**
* Description of the Field * Description of the Field
*/ */
public static String scriptExtension; public static String scriptExtension = ".js";
/** /**
* Description of the Field * Description of the Field
*/ */
public static String templateExtension; public static String templateExtension = ".hsp";
/** /**
* Description of the Field * Description of the Field
*/ */
@ -42,7 +42,7 @@ public class DocRun {
*/ */
public static String hopHomeDir; public static String hopHomeDir;
private static Hashtable options; public static Hashtable options = new Hashtable();
String appName; String appName;
DocApplication app; DocApplication app;